Java 코드는 <% %> 안에 적는다.
JSP 주석은 <%-- --%>
값 출력은 <%= %>
내장 객체로는 session, request 등이 있다.
form 값 가져오기: String name = request.getParameter("name");
session 값 저장: session.setAttribute("name", name);
session 값 가져오기: (String) session.getAttribute("name");
로그아웃은 session.invalidate();
한글이 깨질 때는 request.setCharacterEncoding("utf-8");
'Programming' 카테고리의 다른 글
< 라이브러리 없이 파일업로드 기본소스 - JAVA> (0) | 2021.09.24 |
---|---|
톰캣(tomcat)을 윈도 서비스(Windows Service)에 등록하고 설정 변경하기 (0) | 2021.09.17 |
(JSP) DataSource invalid: "java.sql.SQLException: No suitable driver" (0) | 2021.09.13 |
PowerShell – How to add newline to string or variable? (0) | 2021.08.02 |
PowerShell로 TCP 포트 접근 테스트하기 (0) | 2021.07.22 |