struts2整合spring应用实例 -凯发k8网页登录

苟有恒,何必三更起五更眠;
最无益,只怕一日曝十日寒.
posts - 241, comments - 318, trackbacks - 0, articles - 16
posted on 2008-09-13 17:34 xcp 阅读(54077) 评论(22)     所属分类: struts2
    我们知道struts1与spring整合是靠org.springframework.web.struts.delegatingactionproxy来实现的,以下通过具体一个用户登录实现来说明struts2整合spring的相关内容.

    一、准备工作
        

 1.实例分析我们在这不与数据库打交道,所有就是当用登录的时候判断用户名是否为指定值,密码是否为指定值,以及相关的异常处理、
        2.为什么我们要说struts2整合spring呢?相信在家都知道,我也不用多说了....
        4.在  下载struts2的jar包,源码,api文档.
        5.在  下载不同版本的spring的jar包,源码,api文档.
        6.配置开发环境:myeclipse6.0 eclipse3.3 jdk6.0 tomcat6.0 struts 2.0.11 spring2.0
    7.新建web项目,导入相应的jar包,如以下所示:
     a.由于现在ide开发工具还没有对struts2.0有很好的支持,所有我们需要手功配置,首先将我们刚下下来的struts2.0的lib里面的commons-logging-1.0.4.jar、ognl-2.6.11.jar、xwork-2.0.4.jar、freemarker-2.3.8.jar、struts2-core-2.0.11.1.jar以及struts2.0里面所需要的插件包struts2-spring-plugin-2.0.11.1.jar添加的web-inf/lib下面
     b.通过通过ide开发工具项目对spring2.0的支持
    7.在src下建立struts.xml文件(具体的写法在后面呈现)
    8.配置web.xml,如下:
    

xml version="1.0" encoding="utf-8"?>
<web-app version="2.5" 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_2_5.xsd"
>
    
    
    

    
<filter>
        
<filter-name>struts2filter-name>
        
<filter-class>
            org.apache.struts2.dispatcher.filterdispatcher
        
filter-class>
    
filter>
    
<filter-mapping>
        
<filter-name>struts2filter-name>
        
<url-pattern>/*url-pattern>
    
filter-mapping>

    

    
<context-param>
        
<param-name>contextconfiglocationparam-name>
        
<param-value>classpath*:applicationcontext.xmlparam-value>
    
context-param>

    

    
<listener>
        
<listener-class>
            org.springframework.web.context.contextloaderlistener
        
listener-class>
    
listener>    
web-app>


        

    二、建立前台页面
      1.用户登录肯定有一个用户登录页面login.jsp,如下:
        

<%@ page language="java"  pageencoding="gb2312"%>
<%@ taglib prefix="s"  uri="/struts-tags"%>

doctype html public "-//w3c//dtd html 4.01 transitional//cn">
<html>
  
<head>
      
<title>login2title>
  
head>

  
<body>
      
<s:form name="login" action="login" method="post" >
          
<s:textfield name="username" label="帐号">s:textfield>
          
<s:password name="password"  label="密码">s:password>
          
<s:submit>s:submit>
      
s:form>
  
body>
html>

   2.若登录成功的index.jsp文件,如下:
    

<%@ page language="java"  pageencoding="gb2312"%>

doctype html public "-//w3c//dtd html 4.01 transitional//cn">
<html>
  
<head>
      
<title>login2title>
  
head>
    
  
<body>
          
<div>
              
<h4>欢迎你!h4><font color="red">${username}font>
              
<br/>
              
<h4>你登录的密码是<h4><font color="red">${password}font>;
          
div>
  
body>
html>

3、用户名非法提示页面.usernameinvalid.jsp(通过el表达示得到异常信息)
    
    

<%@ page language="java" contenttype="text/html; charset=gb18030"
    pageencoding
="gb18030"
%>

doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb18030">
<title>insert title heretitle>
head>
<body>
    用户名非法:
<font color="red">${exception.message}font>
body>
html>

4、密码非法提示页面.passwordinvalid.jsp(struts2标签得到异常信息);
    
    

<%@ page language="java" contenttype="text/html; charset=gb18030"
    pageencoding
="gb18030"
%>
 
<%@ taglib prefix="s" uri="/struts-tags"%>
doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb18030">
<title>insert title heretitle>
head>
<body>
    密码非法:
<font  color="red"><s:property value="exception.message"/>font>
body>
html>

    
     三、建立对应的action

       1.提供用户请求服务的loginservice类
       
           

package org.topcsa.s2s.service;

import org.topcsa.s2s.exception.passwordexception;
import org.topcsa.s2s.exception.usernameexception;

public class loginservice
{
    
/*
     * 我们这只是一个小的例子,不与数据库打交到
     * 若有数据库操作,那么在这个loginservice就是操作具体dao类实现登录的相关操作
     
*/

    
public boolean validate(string username,string password)throws exception
    
{
        
boolean v = false;
        
if(!"xcp".equals(username))//如果用户名不等于xcp,就抛出一个异常
        {
            
throw new usernameexception("用户名不正确");
        }

        
else if(!"123".equals(password))))//如果密码不等于123,就抛出一个异常

        
{
            
throw new passwordexception("密码不正确");
        }

        
else
        
{
            v 
= true;            
        }

        
return v;
    }

}


       2.接收用户请求的loginaction类

        

package org.topcsa.s2s.action;

import org.topcsa.s2s.service.loginservice;

import com.opensymphony.xwork2.actionsupport;

public class loginaction extends actionsupport
{

    
/**
     * 
     
*/

    
private static final long serialversionuid = 1l;

    
private string username;
    
private string password;
    
    
/*
     * 我们通过spring的ioc容器注入loginservice,从而减少类之间的依赖关系
     
*/

    
private loginservice loginservice;
    
    
public loginservice getloginservice()
    
{
        
return loginservice;
    }

    
public void setloginservice(loginservice loginservice)
    
{
        
this.loginservice = loginservice;
    }

    
public string getusername()
    
{
        
return username;
    }

    
public void setusername(string username)
    
{
        
this.username = username;
    }

    
public string getpassword()
    
{
        
return password;
    }

    
public void setpassword(string password)
    
{
        
this.password = password;
    }

    
    
    @override
    
public void validate()
    
{
        
/*
         * 我们可以在这个方法类加一些输入验证 但是为了体现后面我们写的业务逻辑方法这就不验证
         
*/

    }

    
    @override
    
public string execute() throws exception
    
{
        
        
boolean result = loginservice.validate(username, password);
        
if(result == true)
        
{
            
return success;
        }

        
else
        
{
            
return input;
        }

    }

}

   
  四、配置struts.xml与applicationcontext.xml
    
        1.配置struts.properties,为了解决中文问题,具体用法参照struts2的用法如下:里面加上struts.i18n.encoding = gb2312,当然也可以直接加到struts.xml里面写法为
        2.配置struts.xml
        

xml version="1.0" encoding="gb2312" ?>
doctype struts public
    
"-//apache software foundation//dtd struts configuration 2.0//en"
    
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
    
<package name="struts2" extends="struts-default">
        
<action name="login" class="loginaction">
            
<exception-mapping result="usernameinvalid" exception="org.topcsa.s2s.exception.usernameexception" />
            
<exception-mapping result="passwordinvalid" exception="org.topcsa.s2s.exception.passwordexception" />
            
<result name="success">/index.jspresult>
            
<result name="input">/login.jspresult>
            
<result name="usernameinvalid">/usernameinvalid.jspresult>
            
<result name="passwordinvalid">/passwordinvalid.jspresult>
        
action>
    
package>
struts>


        3.配置applicationcontext.xml
        

xml version="1.0" encoding="utf-8"?>
<beans
    xmlns
="http://www.springframework.org/schema/beans"
    xmlns:xsi
="http://www.w3.org/2001/xmlschema-instance"
    xsi:schemalocation
="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
    
    
<bean name="loginservice" class="org.topcsa.s2s.service.loginservice" />
    
    
<bean name="loginaction" class="org.topcsa.s2s.action.loginaction">
        
<property name="loginservice">
            
<ref bean="loginservice"/>
        
property>
    
bean>        

beans>


         五、测试(全部成功)    
    

           



        
            
            


            
            




名称: ♪4c.esl | .↗evon
口号: 遇到新问题♪先要寻找一个方案乄而不是创造一个方案こ
mail:


feedback

# re: struts2整合spring应用实例  回复     

2008-09-13 18:48 by
?你的exception呢

# re: struts2整合spring应用实例  回复     

2008-09-15 13:37 by xcp
@12
呵呵,exception我写在局部的!!!

# re: struts2整合spring应用实例  回复     

2009-02-18 14:32 by
想看
exceptn.passwordexception和
usernameexception的代码

# re: struts2整合spring应用实例  回复     

2010-03-23 13:12 by
你的exception让我们看看可以吗

# re: struts2整合spring应用实例  回复     

2011-06-21 15:40 by
写的很清晰, 初学者或是想快速掌握的人的理想资料.

# re: struts2整合spring应用实例[未登录]  回复     

2011-12-28 10:34 by
补充exception的代码

public class usernameexception extends exception {

/**
*
*/
private static final long serialversionuid = 1l;

public usernameexception(){};
public usernameexception(string message)
{
super(message);
}

}

# re: struts2整合spring应用实例[未登录]  回复     

2011-12-28 10:35 by
另外一个exception的代码
public class passwordexception extends exception {

/**
*
*/
private static final long serialversionuid = 1l;
public passwordexception(){}
public passwordexception(string message)
{
super(message);
}

}

# re: struts2整合spring应用实例[未登录]  回复     

2011-12-31 00:53 by
谢谢

# re: struts2整合spring应用实例[未登录]  回复     

2012-02-23 23:06 by
多谢博主 我也成功了

# re: struts2整合spring应用实例  回复     

2012-09-09 12:24 by
多谢,初学者,整合不容易啊!

# re: struts2整合spring应用实例  回复     

2013-01-22 09:46 by
谢谢楼主啊

# re: struts2整合spring应用实例  回复     

2013-03-30 15:20 by
楼主,我按照你这个做了。提示找不到loginaction,我用的spring3.0

# re: struts2整合spring应用实例[未登录]  回复     

2013-04-02 20:03 by
很清晰 感谢楼主

# re: struts2整合spring应用实例[未登录]  回复     

2013-06-02 19:24 by
奇怪了,你们竟然都能成功?我也是按照楼主的写法一步一步的写的,后来这里始终有报这错:
com.lee.ssh.test.exception.passwordexception: 密码不正确
com.lee.ssh.test.login.loginservice.validate(loginservice.java:13)
com.lee.ssh.test.login.loginaction.execute(loginaction.java:29)
sun.reflect.nativemethodaccessorimpl.invoke0(native method)
sun.reflect.nativemethodaccessorimpl.invoke(unknown source)
sun.reflect.delegatingmethodaccessorimpl.invoke(unknown source)
java.lang.reflect.method.invoke(unknown source)
com.opensymphony.xwork2.defaultactioninvocation.invokeaction(defaultactioninvocation.java:450)
com.opensymphony.xwork2.defaultactioninvocation.invokeactiononly(defaultactioninvocation.java:289)
com.opensymphony.xwork2.defaultactioninvocation.invoke(defaultactioninvocation.java:252)
org.apache.struts2.interceptor.debugging.debugginginterceptor.intercept(debugginginterceptor.java:256)
com.opensymphony.xwork2.defaultactioninvocation.invoke(defaultactioninvocation.java:246)
..................

求解……

# re: struts2整合spring应用实例  回复     

2013-07-29 22:24 by
struts2的action是每一此请求都被实例化一次,你用spring注入loginservice保存的是非静态变量,当访问action时action又被实例化了一次,此时loginservice已经不是现在这个对象所拥有,还是null。

# re: struts2整合spring应用实例  回复     

2013-11-05 14:12 by
@lee
你应该是没写这两个jsp页面
passwordinvalid.jsp和usernameinvalid.jsp

# re: struts2整合spring应用实例  回复     

2013-11-27 21:23 by
spring中的bean管理struts中的action时是要配置scope的

# re: struts2整合spring应用实例  回复     

2014-05-04 09:47 by
非常感谢

# re: struts2整合spring应用实例  回复     

2014-10-27 15:42 by
严重: error configuring application listener of class org.springframework.web.context.contextloaderlistener
java.lang.classnotfoundexception: org.springframework.web.context.contextloaderlistener
at org.apache.catalina.loader.webappclassloader.loadclass(webappclassloader.java:1720)
at org.apache.catalina.loader.webappclassloader.loadclass(webappclassloader.java:1571)
at org.apache.catalina.core.defaultinstancemanager.loadclass(defaultinstancemanager.java:506)
at org.apache.catalina.core.defaultinstancemanager.loadclassmaybeprivileged(defaultinstancemanager.java:488)
at org.apache.catalina.core.defaultinstancemanager.newinstance(defaultinstancemanager.java:115)
at org.apache.catalina.core.standardcontext.listenerstart(standardcontext.java:4909)
at org.apache.catalina.core.standardcontext.startinternal(standardcontext.java:5492)
at org.apache.catalina.util.lifecyclebase.start(lifecyclebase.java:150)
at org.apache.catalina.core.containerbase$startchild.call(containerbase.java:1575)
at org.apache.catalina.core.containerbase$startchild.call(containerbase.java:1565)
at java.util.concurrent.futuretask.run(unknown source)
at java.util.concurrent.threadpoolexecutor.runworker(unknown source)
at java.util.concurrent.threadpoolexecutor$worker.run(unknown source)
at java.lang.thread.run(unknown source)

十月 27, 2014 3:44:05 下午 org.apache.catalina.core.standardcontext listenerstart
严重: skipped installing application listeners due to previous error(s)

# re: struts2整合spring应用实例  回复     

2014-10-29 15:09 by
根本不能运行

# re: struts2整合spring应用实例  回复     

2016-01-25 10:22 by
为什么我的是404错误

# re: struts2整合spring应用实例  回复     

2016-02-28 11:58 by
action中注入不了service

只有注册用户后才能发表评论。


网站导航:
              
 
网站地图