首页 > 网站 > 帮助中心 > 正文

Spring与Struts整合之让Spring管理控制器操作示例

2024-07-09 22:43:07
字体:
来源:转载
供稿:网友

本文实例讲述了Spring与Struts整合之让Spring管理控制器操作。分享给大家供大家参考,具体如下:

一 Web配置

<?xml version="1.0" encoding="GBK"?><web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee  http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">  <!-- 使用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配置

<?xml version="1.0" encoding="GBK"?><beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns="http://www.springframework.org/schema/beans"  xmlns:p="http://www.springframework.org/schema/p"  xsi:schemaLocation="http://www.springframework.org/schema/beans  http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">  <!-- 定义一个业务逻辑组件,实现类为MyServiceImp -->  <bean     class="org.crazyit.app.service.impl.MyServiceImpl"/>  <!-- 让Spring管理的Action实例,并依赖注入业务逻辑组件 -->  <bean  class="org.crazyit.app.action.LoginAction"    scope="prototype" p:ms-ref="myService"/></beans>

三 视图

1 loginForm.jsp

<%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %><%@taglib prefix="s" uri="/struts-tags"%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>  <title>登录页面</title></head><body><h3>用户登录</h3><s:form action="login">  <s:textfield name="username" label="用户名"/>  <s:textfield name="password" label="密码"/>  <tr align="center">    <td colspan="2">    <s:submit value="登录" theme="simple"/>    <s:reset value="重设" theme="simple"/>    </td>  </tr></s:form></body></html>

2 welcome.jsp

<%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %><%@taglib prefix="s" uri="/struts-tags"%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>  <title>成功页面</title></head><body>  您已经登录!<br/>  <s:actionmessage /></body></html>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表