동적 방법 호출 의 두 가지 방식

1006 단어 자바Webjspxmlstruts
동적 방법 호출 의 두 가지 방식
1.사용!+방법 명 호출 지정 방법
   액 션 에 접근 하 는 url 을 가정 합 니 다.http://localhost:8080/hellword/dept/list.action
   action 에 login()방법 이 있다 고 가정 합 니 다.
   login 방법 을 호출 할 url 은http://localhost:8080/hellword/dept/list!login.action
   이러한 접근 방식 을 금지 하려 면 struts.xml 에서 인 자 를 설정 할 수 있 습 니 다.
<constant name="struts.enable.DynamicMethodInvocation" value="false"/>  

이 방식 은 api 에서 이미 유행 이 지 났 습 니 다.이런 방식 을 추천 하지 않 습 니 다.
2.마스크 정의 action 사용
 <package name="employee" namespace="/control/employee" extends="struts-default">
		<action name="list_*" class="cn.itcast.action.HelloWorldAction" method="{1}">
			<result name="success">/WEB-INF/page/message.jsp</result>
		</action>
	</package>  

login 방법 에 접근 할 url 은?http://localhost:8080/hellword/dept/lis_login.action

좋은 웹페이지 즐겨찾기