package myapp2;
import java.text.DecimalFormat;
public class MyUtil {
public static String getMoneyForm(String str) {
if (str == null)
return "";
int offset = str.indexOf(".");
String work_str = "";
String nonwork_str = "";
if (offset > 0) {
work_str = str.substring(0, offset);
nonwork_str = str.substring(offset, str.length());
} else {
work_str = str;
}
DecimalFormat df = new DecimalFormat("###,##0");
double d = 0.0D;
try {
d = Double.valueOf(work_str).doubleValue();
} catch (Exception e) {
d = 0.0D;
}
return df.format(d) + nonwork_str;
}
}
<%@page contentType="text/html; charset=UTF-8"%>
<%@page import="myapp2.MyUtil"%>
<%
String money = "10000000";
%>
표현식 : <%=MyUtil.getMoneyForm(money)%><p>
http://localhost/myapp2/
주소를 통해 제대로 동작하는지 확인한다.
먼저 이클립스에 열린 톰켓 서버를 종료한다.
그리고 다음 화면을 따라한다.
war 파일 저장시 webapps 경로에 myapp2.war 파일이 저장됨.
클릭 후 실행
실행시 myapp2 폴더가 생성됨.
examples/jsp 및 html 저장 위치
/WEB-INF/lib : 외부 jar 파일 저장
/classes: .class 저장
그 후 다음 링크를 통해 본인의 서버에 들어간다.
http://localhost/myapp2/
<!-- ch05/script4.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<jsp:declaration>
String str = "테스트";
</jsp:declaration>
<jsp:scriptlet>
String str1 = "테스트1";
</jsp:scriptlet>
<jsp:expression>
str + " : "+ str1
</jsp:expression>
<!-- ch06/page1.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%@page session="true"%>
<%
String sessionId = session.getId();
session.setMaxInactiveInterval(30); // 30초
%>
최초 접속시 제공되는 세션ID값 : <%=sessionId%>
<!-- ch06/page2.jsp -->
<%@page contentType="text/html; charset=UTF-8"
import="java.util.*, java.net.*"
%>
<%@page session="true" buffer="16kb"%>
<%
Date d = new Date();
%>
현재의 날짜와 시간은? <%=d.toLocaleString() %>
<!-- ch06/page3.jsp -->
<!-- charset :client 에게 보낼 코도의 인코딩 -->
<!-- pageEncoding: 현재 JSP 페이지의 인코딩 -->
<%@page contentType="text/html; charset=UTF-8"%>
<%@page pageEncoding="EUC-KR"
trimDirectiveWhitespaces="true"
isELIgnored="true"
%>
<%
String site = "jspstudy.co.kr";
request.setAttribute("site",site);
%>
사이트명 :<%=site%><br>
사이트명 :${site}
문법무시
<%@page contentType="text/html; charset=UTF-8"
errorPage="error.jsp"
%>
<%
int a = 10, b = 0;
%>
사칙연산<br>
a + b = <%=a+b%><br>
a - b = <%=a-b%><br>
a * b = <%=a*b%><br>
a / b = <%=a/b%><br>
<%@ page contentType="text/html; charset=UTF-8"
isErrorPage="true"
%>
<h1>Error Page</h1>
다음과 같이 예외가 발생 하였습니다.<br>
<%=exception.getMessage() %>
page4,jsp 파일만 실행할 시 위의 화면이 출력
error.jsp 코드 추가 후 page4.jsp 를 실행시 위의 화면이 출력 됨.
<!-- ch06/include1.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%@include file="top.jsp"%>
include 지시자의 body입니다.
<%
//String d = "하하";
%>
<%@include file="bottom.jsp"%>
<!-- ch06/top.jsp -->
<%@page import="java.util.Date"%>
<%@page contentType="text/html; charset=UTF-8"%>
<%
Date d = new Date();
%>
<html>
<body>
include 지시자의 Top입니다.
<hr color="red" width="30%" align="left">
<!-- ch06/bottom.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<hr color="blue" width="30%" align="left">
include 지시자의 Bottom입니다.
</body>
</html>
include 지시자는 여러 소스로 분할된 코드를 모으는 역할을 한다.
WEB-INF -> web.xml 파일에 태그 아래
<filter>
<filter-name>Set Character Encoding</filter-name>
<filter-class>org.apache.catalina.filters.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>Set Character Encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
코드 넣기
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<h1>Forward Tag Example1</h1>
<FORM METHOD=POST ACTION="forwardTag1_1.jsp">
아이디 : <INPUT NAME="id" value="aaa"><p>
패스워드 : <INPUT TYPE="password" NAME="pwd" value="1234"><p>
<INPUT TYPE="submit" VALUE="보내기">
</FORM>
</body>
</html>
그리고 위의 코드에 있는 METHOD=GET -> POST 로 변환시 한글이 깨지지 않음을 확인할 수 있음.
<!-- ch06/includeTag1.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%
String name = request.getParameter("name");
%>
<!-- include 액션태그 호출시 요청 정보도 같이 넘어감. -->
<jsp:include page="includeTagTop1.jsp"/>
inlude 액션태그의 Body입니다.
<!-- ch06/includeTagTop1.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%
String name = request.getParameter("name");
%>
include 액션태그의 Top 입니다.<p>
<b><%=name%></b> 파이팅!!!
<hr align="left" color="red" width="40%">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR"/>
</head>
<body>
<h1>Include Tag Example2</h1>
<FORM METHOD="POST" ACTION="includeTag2.jsp">
SITENAME : <INPUT NAME="siteName" value="naver.com"><p>
<INPUT TYPE ="submit" VALUE="보내기">
</FORM>
</body>
</html>
<!-- ch06/includeTag2.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%
String siteName = request.getParameter("siteName");
%>
<!-- 추가적인 요청값이 있을때 param 사용 -->
요청한 사이트:<%=siteName%>
<jsp:include page="includeTagTop2.jsp">
<jsp:param name="id" value="aaa"/>
<jsp:param name="pwd" value="1234"/>
</jsp:include>
<!-- ch06/includeTagTop2.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%
String id =request.getParameter("id");
String pwd =request.getParameter("pwd");
%>
<hr color="red">
id:<%=id%><br>
pwd:<%=pwd%><br>
<!-- includeTag3.html -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<h1>Include Tag Example3</h1>
<FORM METHOD="get" ACTION="includeTag3.jsp">
혈액형별로 성격 테스트<p/>
당신의 혈액형은?<p/>
<INPUT TYPE="radio" NAME="bloodType" VALUE="A">A형<br>
<INPUT TYPE="radio" NAME="bloodType" VALUE="B">B형<br>
<INPUT TYPE="radio" NAME="bloodType" VALUE="O">O형<br>
<INPUT TYPE="radio" NAME="bloodType" VALUE="AB">AB형<br>
<INPUT TYPE="submit" VALUE="보내기">
</FORM>
</body>
</html>
<!-- ch06/includeTag3.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%
String bloodType = request.getParameter("bloodType");
String name = "simba222";
%>
<!-- 표현식에서 ""값이 있을때는 ''값으로 시작한다. -->
<jsp:include page='<%=bloodType+".jsp"%>'>
<jsp:param name="name" value="<%=name%>"/>
</jsp:include>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<h1>Forward Tag Example1</h1>
<FORM METHOD=POST ACTION="forwardTag1_1.jsp">
아이디 : <INPUT NAME="id" value="aaa"><p>
패스워드 : <INPUT TYPE="password" NAME="pwd" value="1234"><p>
<INPUT TYPE="submit" VALUE="보내기">
</FORM>
</body>
</html>
<!-- ch06/forwardTag1_1.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%
String id = request.getParameter("id");
String pwd = request.getParameter("pwd");
%>
<jsp:forward page="forward1_2.jsp"/>
<!-- ch06/forward1_2.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%
String id = request.getParameter("id");
String pwd = request.getParameter("pwd");
%>
<!-- 이페이지가 클라이언에게 응답된다. -->
id:<%=id%><br>
pwd:<%=pwd%><br>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<h1>Forward Tag Example2</h1>
<FORM METHOD="get" ACTION="forwardTag2_1.jsp">
혈액형별로 성격 테스트<p/>
당신의 혈액형은?<p/>
<INPUT TYPE="radio" NAME="bloodType" VALUE="A">A형<br>
<INPUT TYPE="radio" NAME="bloodType" VALUE="B">B형<br>
<INPUT TYPE="radio" NAME="bloodType" VALUE="O">O형<br>
<INPUT TYPE="radio" NAME="bloodType" VALUE="AB">AB형<br>
<INPUT TYPE="submit" VALUE="보내기">
</FORM>
</body>
</html>
<!-- ch06/forwardTag2_1.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%
String bloodType = request.getParameter("bloodType");
String name = "홍길동";
%>
<jsp:forward page="forward2_2.jsp"/>
<!-- ch06/forawrd2_2.jsp -->
<%@page contentType="text/html; charset=UTF-8"%>
<%
String bloodType = request.getParameter("bloodType");
String name = "홍길동";
%>
<!-- 이페이지가 클라이언에게 응답된다. -->
<jsp:include page='<%=bloodType+".jsp"%>'>
<jsp:param name="name" value="<%=name%>"/>
</jsp:include>