Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- JavaScript
- 메소드
- HTML
- Graphic
- 안드로이드
- 전화걸기
- paint
- JSP
- OGNL
- layout
- 기본
- 어노테이션
- 국제화
- 배열
- 에러페이지
- struts2
- 예외처리
- AWT
- Spring
- mybatis
- 메서드
- Java
- 생성자
- 오버로딩
- Android
- 이클립스
- Eclips
- Menu
- oracle
- 클래스
Archives
- Today
- Total
note
스트럿츠2 설치&셋팅 본문
2.0.14 백업
기본 설정
프로젝트 생성
생성됨
쓸모 없는 파일들 지우기
web.xml
필수 요소
web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <display-name>Struts2Main</display-name> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> <init-param> <param-name>struts.i18n.encoding</param-name> <param-value>utf-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list> </web-app>
package -> tutorial
class -> HelloWorld
기본 동작 확인을 위한 생성
HelloWorld.java
package tutorial; import com.opensymphony.xwork2.Action; public class HelloWorld implements Action{ private String message; public String getMessage(){ return message; } @Override public String execute() throws Exception { message = "Hello, World"; return SUCCESS; } }
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <!-- 1.기본연결 --> <package name="tutorial" extends="struts-default"> <action name="helloWorld" class="tutorial.HelloWorld"> <result name="success">/helloWorld.jsp</result> </action> </package> </struts>
인코딩 방식 UTF-8로 바꾸기
jsp -> action 변경
'JSP > Struts2' 카테고리의 다른 글
Struts2 include 사용 (0) | 2012.02.21 |
---|---|
Struts2 와일드카드 디폴트 (0) | 2012.02.21 |
struts2 default-action-ref (에러페이지) (0) | 2012.02.21 |
struts2 ActionSupport를 이용한 JSP 호출 (form만 요청할페이지에 사용) (0) | 2012.02.21 |
struts2 POJO형태의 액션 만들기 (0) | 2012.02.21 |