struts-2.1.8.1+jquery-1.3.2+spring-framework-2.5.6集成 - 编程入门网
quot;1.0" encoding="UTF-8"?>
2 <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
5 <!-- 配置struts2拦截器 -->
6 <filter>
7 <filter-name>struts2</filter-name>
8 <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter -class>
9 </filter>
10 <filter- mapping>
11 <filter-name>struts2</filter- name>
12 <url-pattern>/*</url- pattern>
13 </filter-mapping>
14 <!-- 配 置默认首页 -->
15 <welcome-file-list>
16 <welcome-file>index.jsp</welcome-file>
17 </welcome-file-list>
18 <login-config>
19 <auth-method>BASIC</auth-method>
20 </login-config>
21 <!-- 配置spring监听 -->
22 <listener>
23 <listener- class>org.springframework.web.context.ContextLoaderListener</listener- class>
24 </listener>
25 <context- param>
26 <param- name>contextConfigLocation</param-name>
27 <param-value>classpath:applicationContext.xml</param-value>
28 </context-param>
29 </web-app>
tomcat根据web.xml的配置.来监听struts与spring. 6.接下来是struts.xml.需要对Action进行配置. 代码
这里因为与Spring结合了,当然代码组织就需要靠spring来完成了.所以这里的class只 指定了一个名称.会在spring配置文件里的bean id里见到.那里会指定登录处理的 Action. 7.Spring配置文件applicationContext.xml: 代码
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |