Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- node.js web framework
- rss
- express for node.js
- iBatis
- 나의 프로젝트
- nodejs express
- ajax
- C/C++
- Lift
- 주식이야기
- 나의 취미
- Eclipse
- 디즈니씨
- 베트남어
- 도커
- Cross
- 명사 뽑아내기
- 명사 분석기
- flex3
- 메일왕창보내는법
- 책이야기
- 스킨 스쿠버
- docker
- ejb
- scala
- ror실행
- 명사 추출기
- php
- Node.js
- php thumbnail
Archives
- Today
- Total
nkdk의 세상
Structs 시작에 앞서 준비해야 할 사항 본문
일단은 이클립스 3.3을 설치 했다 왜냐하면 이것이 3.2버전에서는 xml2.4로의
설정 부분이 이상한 경우가 있어서 그런 것 같다. 3.3 버전 부터는 그런 부분들의 컨텐츠가 추가 되어 있기 때문에 괜찮다.
여기서 정말 중요한 부분이 아무래도 struts-config.xml 이라는 것은 누차 이야기 하지 않아도 알 것이다.
그리고 structs-config.xml 부분에서
<controller>
<set-property property="processorClass" value="example.MyrequestProcess" />
</controller>
으로 가게 되면 그쪽에서 설정되는 것들은 계속적으로 값을 유지 하게 된다.
web.xml과 struts-config.xml 부분의 기본적인 디렉토리 설명을 하겠다
ActionServlet -> 에서 수정하면 전체적으로 모두 수정된다.
action
actionFrom과 모델은 우리가 만든다.
두군데에서 만드는 데 액션폼과 dto라는 곳에서 선언을 한다.
액션폼에서. 셋터 겟터를 만들어 사용 할 수도 있다.
dto라는 폼빈을 하나 더 만들 수 있다.
모델과 콘트롤러 부분..
다음으로
jsf, 스프링으로 배워 나간다.
순서 -> requestProcessor 에 콘트롤러 실행 함
web.xml 에서의 설정은
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" 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>str</display-name>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</web-app>
이런식으로 한다.
structs-config.xml 은 다음과 같이 설정한다.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd">
<struts-config>
<action-mappings>
<action path="/index" type="example.IndexAction" >
<forward name="success" path="/success.jsp" />
</action>
</action-mappings>
<controller>
<set-property property="processorClass" value="example.MyrequestProcess" />
</controller>
</struts-config>
기본 적인 구조는 1번 게시물을 참고한다.
설정 부분이 이상한 경우가 있어서 그런 것 같다. 3.3 버전 부터는 그런 부분들의 컨텐츠가 추가 되어 있기 때문에 괜찮다.
여기서 정말 중요한 부분이 아무래도 struts-config.xml 이라는 것은 누차 이야기 하지 않아도 알 것이다.
그리고 structs-config.xml 부분에서
<controller>
<set-property property="processorClass" value="example.MyrequestProcess" />
</controller>
으로 가게 되면 그쪽에서 설정되는 것들은 계속적으로 값을 유지 하게 된다.
web.xml과 struts-config.xml 부분의 기본적인 디렉토리 설명을 하겠다
ActionServlet -> 에서 수정하면 전체적으로 모두 수정된다.
action
actionFrom과 모델은 우리가 만든다.
두군데에서 만드는 데 액션폼과 dto라는 곳에서 선언을 한다.
액션폼에서. 셋터 겟터를 만들어 사용 할 수도 있다.
dto라는 폼빈을 하나 더 만들 수 있다.
모델과 콘트롤러 부분..
다음으로
jsf, 스프링으로 배워 나간다.
순서 -> requestProcessor 에 콘트롤러 실행 함
web.xml 에서의 설정은
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" 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>str</display-name>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</web-app>
이런식으로 한다.
structs-config.xml 은 다음과 같이 설정한다.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd">
<struts-config>
<action-mappings>
<action path="/index" type="example.IndexAction" >
<forward name="success" path="/success.jsp" />
</action>
</action-mappings>
<controller>
<set-property property="processorClass" value="example.MyrequestProcess" />
</controller>
</struts-config>
기본 적인 구조는 1번 게시물을 참고한다.