jsp 문법 구조_JAVA

2021. 12. 16. 09:18ksmart_Java/Java

728x90
JSP 문법 구조

<% %> : 자바코드 : scriptlet(스크립트릿) _호출

<%@ %> : 하나의 jsp 설정 : Directive(디렉티브)

<%= %> : 변수에 담겨있는 값 또는 리턴값을 출력 : 표현식

<%-- --%> : 주석 ( Ctrl + Shift + / )

 

Include Directive : 일부 소스코드를 포함시키는 개념

<%@ include file="/파일명/클래스명" %>

<%@ include file="/module/top.jsp" %>

<%@ include file="/module/left.jsp" %>

<%@ include file="/module/hadan.jsp" %>

728x90