본문 바로가기
Hello World/JSP

JSP - 캐시설정 html5 templates settings at eclipse [개발스터디 기몬]

by 기몬 2023. 4. 19.
728x90
반응형

HTML은 html text 파일 
JSP는 servlet으로 저장됨.

 

jsp 템플릿 설정. 
window -preferences - web - html file - editor - templates - html5 - edit 
 >>> <meta http-equiv="Coche-Control" content="no-store"> 
 
window -preferences - web - html file - editor - templates - html5 - edit 
 >>> <meta http-equiv="Coche-Control" content="no-store"> 

 

 



<%@ page language="java" contentType="text/html; charset=${encoding}"
    pageEncoding="${encoding}"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="${encoding}">
<meta http-equiv="Coche-Control" content="no-store"> 
<title>xxx.jsp</title>
</head>
<body>
${cursor}
</body>
</html>


 

728x90
반응형

댓글