https://archive.apache.org/dist/struts/binaries/ 에서 struts-2.0.14-all.zip 파일을 내려받는다.(엄청 오래 걸림 -_-;;)
- commons-logging-1.0.4.jar
- freemarker-2.3.8.jar
- ognl-2.6.11.jar
- struts2-core-2.0.14.jar
- xwork-2.0.7.jar
파일을 미리 다른 곳에 빼놓는다.
Dynamic Web Project 만들기
이름을 적고, 다음
web.xml 만들기
/WebContent/WEB-INF/lib 폴더에 위에서 선택한 파일을 붙여 넣는다.
web.xml에 필터를 등록함.
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>HelloWorld</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
이번에는 새 클래스 만들기
대충 적어 준다.
코드를 작성함.
package happy.ch02.example01;
//POJO(자바 빈즈)
public class HelloWorld {
// 아래 3 문장은 읽기 전용 프로퍼티
private String message; // 객체의 프로퍼티에 직접 접근 못함
public String getMessage() { // 읽기 전용을 위해 getter만 정의
return message; // 간접적으로 사용
}
// 액션 메소드(기본적으로 execute란 이름을 사용한
public String execute() throws Exception {
this.message = "Hello, World!"; // 비즈니스 로직
return "success"; // 리절트 코드
}
}
이번에는 Other 파일을 만듦.
XML 파일
src 폴더에 만든다.
struts.xml 이라는 이름으로, 위와 같이 작성
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="example01" extends="struts-default">
<action name="HelloWorld" class="happy.ch02.example01.HelloWorld">
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
이 위치다.(잘못 파일을 지워서 프로젝트를 새로 생성함 ㅠㅠ)
이번에는 JSP 파일. ${message}만 살아 있으면 된다.
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>${message}</h1>
</body>
</html>
드디어 된다 ㅠㅠ
(이 화면을 보기까지 1시간 걸림)