快速业务通道

struts-2.1.8.1+jquery-1.3.2+spring-framework-2.5.6集成 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-07-04
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进行配置.

代码

1 <?xml version="1.0" encoding="UTF-8" ?> 2 <! DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts  Configuration 2.1//EN" "http://struts.apache.org/dtds/struts- 2.1.dtd"> 3 <struts> 4     <include file="struts- default.xml"></include> 5     <package name="default"  extends="struts-default"> 6         <!-- Action在 applicationContext.xml里进行配置 --> 7         <action  name="Login" class="userlogin"> 8             <result  name="success">/welcome.jsp</result> 9              <result name="error">/error.jsp</result> 10          </action> 11     </package> 12  </struts>

这里因为与Spring结合了,当然代码组织就需要靠spring来完成了.所以这里的class只 指定了一个名称.会在spring配置文件里的bean id里见到.那里会指定登录处理的 Action.

7.Spring配置文件applicationContext.xml:

代码

1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans  default-autowire="byName" 3      xmlns="http://www.springframework.o

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号