IntelliJIDEA如何修改JSP⽂件模板1.点击File ----> 到Settings点击进⼊
2.点击Editor -----> 到File and code templates点击进⼊
3.在Other下有⼀个Jsp.Files,点击⾥⾯的Jsp.Files.jsp,然后就可以在右侧编辑模板
4.这⾥有我编辑好的模板⼤家可以拿去⽤
<%--
java修改html文件Created by IntelliJ IDEA.
User: ${USER}
Date: ${DATE}
Time: ${TIME}
To change this template use File | Settings | File Templates.
--%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="java.sun/jsp/jstl/core" prefix="c" %>
<%
String path = ContextPath();
String basePath = Scheme()+"://"+ServerName()+":"+ServerPort()+path+"/"; %>
<html>
<head>
<base href="<%=basePath%>">
<title>#[[$Title$]]#</title>
</head>
<body>
#[[$END$]]#
</body>
</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论