- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Spring整合Struts2的两种方法小结由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
spring提供了一个ContextLoaderListener,该监听类实现了ServletContextListener接口。该类可以作为Listener使用,它会在创建时自动查找WEB-INF/下的applicationContext.xml文件,因此如果只有一个配置文件且配置文件命名为applicationContext.xml,则只需在web.xml文件中增加如下配置片段:
1
|
2
3
4
5
|
<!-- 使用ContextLoaderListener初始化Spring容器 -->
<
listener
>
<
listener-class
>org.springframework.web.context.ContextLoaderListener
</
listener-class
>
</
listener
>
|
如果有多个配置文件需要载入,则考虑使用<context-param.../>元素确定配置文件的文件名。,COntextLoaderListener加载时,会查找名为contextConfigLocation的初始化参数,因此配置<context-param.../>时应指定参数名为contextConfigLocation.
1
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?
xml
version
=
"1.0"
encoding
=
"GBK"
?>
<
web-app
xmlns
=
"
http://java.sun.com/xml/ns/javaee
"
xmlns:xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd
"
version
=
"3.0"
>
<
context-param
>
<
param-name
> contectCOnfigLocation </
param-name
>
<
param-value
>/WEB-INF/daocontext.xml,/WEB-INF/applicationCotext.xml
</
param-value
>
</
context-param
>
<!-- 使用ContextLoaderListener初始化Spring容器 -->
<
listener
>
<
listener-class
>org.springframework.web.context.ContextLoaderListener
</
listener-class
>
</
listener
>
</
web-app
>
|
Spring根据配置文件创建WebApplicationContext对象,并将其保存在Web应用的ServletContext中。如果要获取应用中的ApplicationContext实例,则可以根据 。
如下获取:
1
|
|
WebApplicationContext ctx=WebApplicationContextUtils.getWebApplicationContext(servletContext)
|
让Spring管理控制器 。
当Struts2将请求转发给指定的Action时,Struts2中的该Action只是一个傀儡,他只是一个代号,并没有指定实际的实现类,当然也不可能创建Action实例,二隐藏在该action下的是Spring容器中的Action实例,他才是真正处理用户请求的控制器.
其中Struts2只是一个伪控制器,这个伪控制器的功能实际由Spring容器中的控制器来完成,这就实现了让核心控制器调用Spring容器中的action来处理用户请求。在这种策略下,处理用户请求的Action由Spring插件负责创建,但Spring插件创建Action实例时。并不是利用配置Action时指定的class属性来创建该action实例,而是从Spring容器中取出对应的Bean实例完成创建.
web.xml 。
1
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?
xml
version
=
"1.0"
encoding
=
"GBK"
?>
<
web-app
xmlns
=
"
http://java.sun.com/xml/ns/javaee
"
xmlns:xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd
"
version
=
"3.0"
>
<!-- 使用ContextLoaderListener初始化Spring容器 -->
<
listener
>
<
listener-class
>org.springframework.web.context.ContextLoaderListener
</
listener-class
>
</
listener
>
<!-- 定义Struts 2的FilterDispathcer的Filter -->
<
filter
>
<
filter-name
>struts2</
filter-name
>
<
filter-class
>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</
filter-class
>
</
filter
>
<!-- FilterDispatcher用来初始化Struts 2并且处理所有的WEB请求。 -->
<
filter-mapping
>
<
filter-name
>struts2</
filter-name
>
<
url-pattern
>/*</
url-pattern
>
</
filter-mapping
>
</
web-app
>
|
applicationcontext.xml 。
1
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?
xml
version
=
"1.0"
encoding
=
"GBK"
?>
<!-- Spring配置文件的根元素,使用spring-beans-3.0.xsd语义约束 -->
<
beans
xmlns:xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xmlns
=
"
http://www.springframework.org/schema/beans
"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
">
<!-- 定义一个业务逻辑组件,实现类为MyServiceImp -->
<
bean
id
=
"myService"
class
=
"com.bh.service.impl.MyServiceImpl"
/>
<!-- 让Spring管理的Action实例,因为每个action里包含请求的状态信息,所以必须配置scope不能为单例 -->
<
bean
id
=
"loginAction"
class
=
"com.bh.action.LoginAction"
scope
=
"prototype"
>
<!-- 依赖注入业务逻辑组件 -->
<
property
name
=
"ms"
ref
=
"myService"
/>
</
bean
>
</
beans
>
|
struts.xml 。
1
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?
xml
version
=
"1.0"
encoding
=
"GBK"
?>
<!-- 指定Struts 2配置文件的DTD信息 -->
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
"
http://struts.apache.org/dtds/struts-2.1.7.dtd
">
<!-- Struts 2配置文件的根元素 -->
<
struts
>
<!-- 配置了系列常量 -->
<
constant
name
=
"struts.i18n.encoding"
value
=
"GBK"
/>
<
constant
name
=
"struts.devMode"
value
=
"true"
/>
<
package
name
=
"lee"
extends
=
"struts-default"
>
<!-- 定义处理用户请求的Action,该Action的class属性不是实际处理类
, 而是Spring容器中的Bean实例-->
<
action
name
=
"loginPro"
class
=
"loginAction"
>
<!-- 为两个逻辑视图配置视图页面 -->
<
result
name
=
"error"
>/WEB-INF/content/error.jsp</
result
>
<
result
name
=
"success"
>/WEB-INF/content/welcome.jsp</
result
>
</
action
>
<!-- 让用户直接访问该应用时列出所有视图页面 -->
<
action
name
=
"*"
>
<
result
>/WEB-INF/content/{1}.jsp</
result
>
</
action
>
</
package
>
</
struts
>
|
使用自动装配 。
通过设置struts.objectFactory.spring.autoWire常量可以改变Spring插件额自动装配策略,该常量可以接受如下几个值:
Name:根据属性名自动装配。Spring插件会查找容器中全部Bean,找到其中id属性与Action所需的业务逻辑组件同名的Bean,将该bean实例注入到Action实例.
Type:根据属性类型自动装配。Spring插件会查找容器中全部Bean,找出其类型恰好与Action所需的业务逻辑组件相同的Bean,将该Bean实例注入到Action实例.
Auto:Spring插件会自动检测需要使用哪种自动装配方式.
Constructor:与type类似,区别是constructor使用构造器来构造注入的所需参数而不是使用设值注入方式.
web.xml 。
1
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?
xml
version
=
"1.0"
encoding
=
"GBK"
?>
<
web-app
xmlns
=
"
http://java.sun.com/xml/ns/javaee
"
xmlns:xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd
"
version
=
"3.0"
>
<
listener
>
<
listener-class
>org.springframework.web.context.ContextLoaderListener
</
listener-class
>
</
listener
>
<
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
>/*</
url-pattern
>
</
filter-mapping
>
</
web-app
>
|
applicationcontext.xml 。
1
|
2
3
4
5
6
7
8
9
|
<?
xml
version
=
"1.0"
encoding
=
"GBK"
?>
<!-- Spring配置文件的根元素,使用spring-beans-3.0.xsd语义约束 -->
<
beans
xmlns:xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xmlns
=
"
http://www.springframework.org/schema/beans
"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
">
<!-- 定义一个业务逻辑组件,实现类为MyServiceImp -->
<
bean
id
=
"ms"
class
=
"com.bh.service.impl.MyServiceImpl"
/>
</
beans
>
|
struts.xml 。
1
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?
xml
version
=
"1.0"
encoding
=
"GBK"
?>
<!-- 指定Struts 2配置文件的DTD信息 -->
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
"
http://struts.apache.org/dtds/struts-2.1.7.dtd
">
<!-- Struts 2配置文件的根元素 -->
<
struts
>
<!-- 配置了系列常量 -->
<
constant
name
=
"struts.i18n.encoding"
value
=
"GBK"
/>
<
constant
name
=
"struts.devMode"
value
=
"true"
/>
<
package
name
=
"lee"
extends
=
"struts-default"
>
<!-- 定义处理用户请求的Action -->
<
action
name
=
"loginPro"
class
=
"com.bh.action.LoginAction"
>
<!-- 为两个逻辑视图配置视图页面 -->
<
result
name
=
"error"
>/WEB-INF/content/error.jsp</
result
>
<
result
name
=
"success"
>/WEB-INF/content/welcome.jsp</
result
>
</
action
>
<!-- 让用户直接访问该应用时列出所有视图页面 -->
<
action
name
=
"*"
>
<
result
>/WEB-INF/content/{1}.jsp</
result
>
</
action
>
</
package
>
</
struts
>
|
以上这篇Spring整合Struts2的两种方法小结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我.
最后此篇关于Spring整合Struts2的两种方法小结的文章就讲到这里了,如果你想了解更多关于Spring整合Struts2的两种方法小结的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在尝试从 struts-config 调用使用 struts 1 中的操作转发属性,并且我想调用另一个操作,它位于另一个 struts.config 文件中。显然它不起作用! 我的代码是: In
我是 Struts 框架的菜鸟。我试图了解 Action 映射是如何工作的。假设我有一个发送 AJAX 请求的 JavaScript 文件: $("button").click(function(){
嗨,我愿意更新从数据库中获取并加载到 JSP 上的复选框的值。我正在创建员工资料。 Jsp 具有员工姓名、员工地址、员工技术技能等字段。 员工技能具有以下复选框以选择以下值 复选框 1:Java 复选
在上面的代码中,fo
如何找到正在使用的 Struts 版本 在 Web应用项目在 Eclipse 中? 我的 struts-config.xml 说 谢谢。 最佳答案 打开 struts jar 并在 META-INF
我一段时间以来一直试图找到这个问题的明确答案,但没有任何运气。我需要知道为什么Struts是紧耦合的? struts 的哪个组件使其紧密耦合。 最佳答案 这太棒了Mkyong article正如我们所
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 5 年前。 Improve this qu
我只是尝试在带有 struts 提供的标签的 jsp 页面中包含一个文本框。但它表现得很典型。 在职的 不工作 所以,没有属性(property)'value' ,它不工作。 请帮帮我。 笔记: 使
我使用 eclipse 来实现原生 Struts 和 hybernate 支持应用程序在页面中显示一系列链接。我收到错误: javax.servlet.jsp.JspException: Cannot
我的 JSP 中有以下代码: .. .. .. .. 这在 struts-config.xml 中文件: 喜欢delete行动吧,我有edit和up
谁能解释一下 Struts 和 Tapestry 框架之间的区别或者它们之间的比较? 问候,马亨德拉·阿特尼亚孟买印度 最佳答案 此处更新了 Tapestry 教程:http://tapestry.a
我有一个在 weblogic 上运行的 j2ee 应用程序。我对我的多功能盒感到困惑。 我对 multibox 的了解是,选中的项目将在提交时作为字符串数组传递。 我不知道为什么在我的应用程序中,当我
我正在设计一个购物车项目,其中只有我的内容区域会发生变化,因此我使用 struts 磁贴对其进行了配置,并且一切正常,直到我在我的项目中遇到表单。每当我尝试使用图 block 显示表单(struts
我想删除在 Struts 1.3 显示标签中没有找到显示的消息,当没有从数据库中获取记录时。 有可能这样做吗...? 最佳答案 从我的角度来看,默认行为应该是在空数据源的情况下不显示任何消息。 emp
我在浏览器窗口中收到以下错误: org.apache.jasper.JasperException:javax.servlet.ServletException:javax.servlet.jsp.J
我是 Struts 的新手。我在 struts 中有一个现有的 java 项目。该项目有 struts.xml 和 .struts.mex 文件。我了解到 struts.xml 是 Action 类到
我遇到了问题。我一直在不同的论坛上寻找答案,但不幸的是我没有找到答案。我需要这个,因为我正在创建一个网页,您可以在其中更改语言,因此不能对其进行硬编码。我需要这样做: "> 所以我想将 html 标记
我正在使用 Struts 2.1.8.1。我想在我的 jsp 页面中使用 struts 提供的标签。例如 Transfer Program - Log
我创建了一个名为 RegesterAction 的新类,但我没有将此类保留在任何包中。如何在 struts.xml 中配置此类? 下面是 struts.xml 文件,但我无法理解属性值 "defaul
我正在开发一个支持 AJAX 的 JavaScript 前端,它可以调用用 Struts 编写的 Java 后端。我的问题是,当后端抛出异常时,客户端仍然会看到“200 OK”HTTP 响应代码,而不
我是一名优秀的程序员,十分优秀!