谁能帮忙说下struts2中 web。xml跟struts。xml的工作顺序。。就是他们怎么写配置的,,谢谢
展开全部
struts2的核心是过滤器
首先进入的是web.xml
需要在web.xml配置struts2过滤器,如下:
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.action</url-pattern>
</filter-mapping>
然后再在struts.xml配置action例如
<?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.i18n.encoding" value="utf-8"></constant>
<constant name="struts.multipart.maxSize" value="999999999" />
<!-- 用户登录 -->
<package name="user" extends="cmts-default" namespace="/">
<action name="user" class="LoginAction (登陆action类中)">
<result name="success">/index.jsp</result>//指定返回页面
<result name="fail">/login.jsp?errorid=0010</result>
</action>
</package>
</struts>
最后在你的登陆类action类中写好你的方法就行了。
public class LoginAction {
public String Login() {
.....
return "success";
}
}
写的已经很明白了,如果有不明白的可以再问我
首先进入的是web.xml
需要在web.xml配置struts2过滤器,如下:
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.action</url-pattern>
</filter-mapping>
然后再在struts.xml配置action例如
<?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.i18n.encoding" value="utf-8"></constant>
<constant name="struts.multipart.maxSize" value="999999999" />
<!-- 用户登录 -->
<package name="user" extends="cmts-default" namespace="/">
<action name="user" class="LoginAction (登陆action类中)">
<result name="success">/index.jsp</result>//指定返回页面
<result name="fail">/login.jsp?errorid=0010</result>
</action>
</package>
</struts>
最后在你的登陆类action类中写好你的方法就行了。
public class LoginAction {
public String Login() {
.....
return "success";
}
}
写的已经很明白了,如果有不明白的可以再问我
展开全部
web.xml 是web服务的配置,不管你用什么框架做,只要是web程序,这个都是必不可少的。
关于配置的情况,推荐答案已经写的很清楚了。
我这里就补充下,你说的这个顺序吧。
首先,web 服务器启动,是先找到自己的web.xml,然后读取配置,然后看到里面配置了struts2的核心拦截器。然后就去初始化这个拦截器。
在struts2的拦截器中,拦截器就先找自己的struts2的配置文件,struts2.xml。然后加载配置的内容,以便后面使用。
然后,服务器启动成功。
关于配置的情况,推荐答案已经写的很清楚了。
我这里就补充下,你说的这个顺序吧。
首先,web 服务器启动,是先找到自己的web.xml,然后读取配置,然后看到里面配置了struts2的核心拦截器。然后就去初始化这个拦截器。
在struts2的拦截器中,拦截器就先找自己的struts2的配置文件,struts2.xml。然后加载配置的内容,以便后面使用。
然后,服务器启动成功。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
先运行web.xml发现有一个把所有地址都过滤进去的filter,然后就进入那个filter,就是struts2的那个类,然后它回去找struts.xml里面的配置,根据你具体请求的action路径去匹配,调取action类,进行业务处理,然后根据execute方法返回的字符串去匹配struts.xml里面result的应对策略,决定执行最终结果
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
浏览器先是根据web.xml的拦截器查找对应struts配置,再将地址栏上参数以后的地址加在struts配置地址后面组成新的地址,再用这个新地址到相应struts配置文件里面找其配置,找到后调用其action,具体配置网上可以查到。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
先进入web.xml,因为struts2需要配置在web.xml中进行过滤的,执行完web.xml,然后再执行struts中的action方法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询