JAVA/JSP

[JSP] OT (설정) / 스크립트 태그

아잠만_ 2024. 6. 24. 16:15

설정

설정에서 java설정되어있는 지 확인 (+환경변수)

이클립스 서버설치

tomcat 9.0 zip 다운로드

인코딩

서버 인코딩

1. port 번호와 URIEncoding설정하기

 <Connector URIEncoding="UTF-8" connectionTimeout="20000" maxParameterCount="1000" port="80" protocol="HTTP/1.1" redirectPort="8443"/>

2. 해당 프로젝트 add할 것

3. 들어가기 쉽게 서버를 더블클릭 후 modules에서 변경할 것

탬플릿

<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
${cursor}
</body>
</html>