You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
777 B
24 lines
777 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
|
|
<struts>
|
|
<constant name="struts.devMode" value="false" />
|
|
<package name="basicstruts2" extends="struts-default">
|
|
|
|
<action name="registerInput">
|
|
<result>/register.jsp</result></action>
|
|
|
|
<action name="loginInput">
|
|
<result>/login.jsp</result></action>
|
|
|
|
<action name="Register" class="RegisterAction" method="register">
|
|
<result name="success">/success.jsp</result>
|
|
<result name="error">/error.jsp</result></action>
|
|
|
|
|
|
<action name="Login" class="RegisterAction" method="login">
|
|
<result name="success">/welcome.jsp</result>
|
|
<result name="error">/success.jsp</result></action>
|
|
</package>
|
|
|
|
</struts>
|