※Action페이지에
내용이 없을 경우에 사용하면 편리함
struts.xml
<!-- 4.ActionSupport를 이용한 jsp 호출--> <package name="ch4-1" extends="struts-default"> <action name="hello"> <result name="success">hello.jsp</result> </action> </package>hello.jsp
<%@ 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>ActionSupport를 이용한 JSP 호출</title> </head> <body> 액션이 없어도 JSP 호출할 수 있어요 ~~~ </body> </html>
'Struts2 > 기본(Oracle)' 카테고리의 다른 글
struts2 와일드카드 디폴트 (0) | 2012.06.21 |
---|---|
struts2 default-action-ref (에러페이지) (0) | 2012.06.21 |
struts2 POJO형태의 액션 만들기 (0) | 2012.06.20 |
struts2 이론 (0) | 2012.06.20 |
struts2 기본예제 (0) | 2012.06.20 |