spring로 검색한 결과 :: 시소커뮤니티[SSISO Community]
 
SSISO 카페 SSISO Source SSISO 구직 SSISO 쇼핑몰 SSISO 맛집
추천검색어 : JUnit   Log4j   ajax   spring   struts   struts-config.xml   Synchronized   책정보   Ajax 마스터하기   우측부분

회원가입 I 비밀번호 찾기


SSISO Community검색
SSISO Community메뉴
[카페목록보기]
[블로그등록하기]  
[블로그리스트]  
SSISO Community카페
블로그 카테고리
정치 경제
문화 칼럼
비디오게임 스포츠
핫이슈 TV
포토 온라인게임
PC게임 에뮬게임
라이프 사람들
유머 만화애니
방송 1
1 1
1 1
1 1
1 1
1

spring로 검색한 결과
등록일:2008-03-16 11:33:31
작성자:
제목:3. 스트럿츠2(Struts2) 어떻게 변했나? - Struts와 Struts2를 비교해보자.(2)


Struts 와 Struts2를 비교해보자.(2)

4. spring 연동

기존 Struts 에선 spring 연동하기 위해선 아래와 같이 ContextLoaderPlugIn 클래스를 만들고 나서 struts-config.xml에 <plug-in> 엘리먼트 구문을 추가해줘야 했다.

기존 Struts에선
- ContextLoaderPlugIn 클래스생성
package spring;
public class springContextLoaderPlugIn extends ContextLoaderPlugIn {
 private static WebApplicationContext webApplicationContext;
 public BizContextLoaderPlugIn(){
  super();
  logger.info("[OK] spring-Struts ContextLoaderPlugIn Init ... OK");
 }
 public static WebApplicationContext getIAWebApplicationContext(){
  return webApplicationContext;
 }
 protected void onInit() throws ServletException {
  webApplicationContext = getWebApplicationContext();
 }

- struts-config.xml 에 추가
  <plug-in className="spring.springContextLoaderPlugIn">
 <set-property property="contextConfigLocation"
  value="/WEB-INF/classes/conf/bizApplicationContext.xml,
      /WEB-INF/action-servlet.xml" />
  </plug-in>

그러나 Struts2에선 아래와 같이 web.xml에 리스너(listener)만 추가해주고선
struts2-spring-plugin-2.0.6.jar 파일만 라이브러리에 추가하면 된다.

- web.xml 에 추가
<listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

- applicationContext.xml 경로가 /WEB-INF 밑에 있지 않을 경우
 <context-param>
   <param-name>contextConfigLocation</param-name>
   <param-value>
   /WEB-INF/classes/spring.xml
   </param-value>
 </context-param>

5. Tiles 연동

기존 Struts에선 아래와 같이 struts-config.xml 파일에 <plug-in> 엘리먼트 구문을 추가해줘야 했다.

기존 Struts에선
- struts-config.xml 에 추가
 <plug-in className="org.apache.struts.tiles.TilesPlugin">
  <set-property property="definitions-config" value="/WEB-INF/conf/tiles-defs.xml"/>
  <set-property property="definitions-debug" value="2"/>
  <set-property property="definitions-parser-details" value="2"/>
  <set-property property="definitions-parser-validate" value="true"/>
 </plug-in>

Tiles 연동도 spring 연동과 비슷하다. 아래와 같이 web.xml에 리스너를 추가하고
struts2-tiles-plugin-2.0.6.jar파일만 라이브러리에 추가하면 된다.

- web.xml 에 추가
<listener>
  <listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class>
</listener>

아래 표는 Struts(http://struts.apache.org/) 사이트에서 Struts 1 과 Struts 2 의 비교표입니다.

Comparing Struts 1 and 2

 

Feature Struts 1 Struts 2
Action classes Struts 1 requires Action classes to extend an abstract base class. A common problem in Struts 1 is programming to abstract classes instead of interfaces. An Struts 2 Action may implement an Action interface, along with other interfaces to enable optional and custom services. Struts 2 provides a base ActionSupport class to implement commonly used interfaces. Albeit, the Action interface is not required. Any POJO object with a execute signature can be used as an Struts 2 Action object.
Threading Model Struts 1 Actions are singletons and must be thread-safe since there will only be one instance of a class to handle all requests for that Action. The singleton strategy places restrictions on what can be done with Struts 1 Actions and requires extra care to develop. Action resources must be thread-safe or synchronized. Struts 2 Action objects are instantiated for each request, so there are no thread-safety issues. (In practice, servlet containers generate many throw-away objects per request, and one more object does not impose a performance penalty or impact garbage collection.)
Servlet Dependency Struts 1 Actions have dependencies on the servlet API since the HttpServletRequest and HttpServletResponse is passed to the execute method when an Action is invoked. Struts 2 Actions are not coupled to a container. Most often the servlet contexts are represented as simple Maps, allowing Actions to be tested in isolation. Struts 2 Actions can still access the original request and response, if required. However, other architectural elements reduce or eliminate the need to access the HttpServetRequest or HttpServletResponse directly.
Testability A major hurdle to testing Struts 1 Actions is that the execute method exposes the Servlet API. A third-party extension, Struts TestCase, offers a set of mock object for Struts 1. Struts 2 Actions can be tested by instantiating the Action, setting properties, and invoking methods. Dependency Injection support also makes testing simpler.
Harvesting Input Struts 1 uses an ActionForm object to capture input. Like Actions, all ActionForms must extend a base class. Since  other JavaBeans cannot be used as ActionForms, developers often create redundant classes to capture input. DynaBeans can used as an alternative to creating conventional ActionForm classes, but, here too, developers may be redescribing existing JavaBeans.
Struts 2 uses Action properties as input properties, eliminating the need for a second input object. Input properties may be rich object types which may have their own properties. The Action properties can be accessed from the web page via the taglibs. Struts 2 also supports the ActionForm pattern, as well as POJO form objects and POJO Actions. Rich object types, including business or domain objects, can be used as input/output objects. The ModelDriven feature simplifies taglb references to POJO input objects.
Expression Language Struts 1 integrates with JSTL, so it uses the JSTL EL. The EL has basic object graph traversal, but relatively weak collection and indexed property support. Struts 2 can use JSTL, but the framework also supports a more powerful and flexible expression language called "Object Graph Notation Language" (OGNL).
Binding values into views Struts 1 uses the standard JSP mechanism for binding objects into the page context for access. Struts 2 uses a "ValueStack" technology so that the taglibs can access values without coupling your view to the object type it is rendering. The ValueStack strategy allows reuse of views across a range of types which may have the same property name but different property types.
Type Conversion Struts 1 ActionForm properties are usually all Strings. Struts 1 uses Commons-Beanutils for type conversion. Converters are per-class, and not configurable per instance. Struts 2 uses OGNL for type conversion. The framework includes converters for basic and common object types and primitives.
Validation Struts 1 supports manual validation via a validate method on the ActionForm, or through an extension to the Commons Validator. Classes can have different validation contexts for the same class, but cannot chain to validations on sub-objects. Struts 2 supports manual validation via the validate method and the XWork Validation framework. The Xwork Validation Framework supports chaining validation into sub-properties using the validations defined for the properties class type and the validation context.
Control Of Action Execution Struts 1 supports separate Request Processors (lifecycles) for each module, but all the Actions in the module must share the same lifecycle. Struts 2 supports creating different lifecycles on a per Action basis via Interceptor Stacks. Custom stacks can be created and used with different Actions, as needed.

출처 : http://struts.apache.org/2.x/docs/comparing-struts-1-and-2.html

 

출처 : 범이(kkbum2000)