struts2 spring2 hibernate3 web应用示例(一) -凯发k8网页登录

posts - 310, comments - 6939, trackbacks - 0, articles - 3
  凯发k8网页登录-凯发天生赢家一触即发官网 :: 凯发k8网页登录首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

struts2 spring2 hibernate3 web应用示例(一)

posted on 2007-09-30 09:40 诗特林 阅读(40617) 评论(81)     所属分类: struts
应it168写的专稿.http://tech.it168.com/j/2007-09-24/200709240935075.shtml

                                           struts2 spring2 hibernate3 web应用示例(一)
 
  • struts2 spring2 hibernate3 web应用示例(一)


  • struts
    作为mvc 2web框架,自推出以来不断受到开发者的追捧,得到广泛的应用。作为最成功的web框架,struts自然拥有众多的优点:mvc 2模型的使用、功能齐全的标志库(tag library)、开放源代码。而spring的出现,在某些方面极大的方面了struts的开发。同时,hibernate作为对象持久化的框架,能显示的提高软件开发的效率与生产力。这三种流行框架的整合应用,可以发挥它们各自的优势,使软件开发更加的快速与便捷。

    struts2发布已经很久了,但关于如何使用它的教程及实例并不多。特别是与springhibernate等流行框架的集成,并不多见。现在就将笔者使用myeclipse工具应用struts2 spring2 hibernate3 实现crud操作的步骤一一纪录下来,为初学者少走弯路略尽绵薄之力!在本文中,笔者将struts2.0.6spring2.0.6hibernate3.1进行整合,希望通过这样的整合示例,让读者了解这些框架各自的特点,以便于在自己的项目中,根据实际情况,尽快的过渡到struts2的时代。本文的内容基于struts2.0.6

     

    一、       准备工作

    spring21.x区别不大,可以平滑的过度,笔者也是把spring1.28换成了spring2.0.6,算是升级到spring 2.0了。struts2基本就是webwork2.2,与以前的struts1.x可以说没任何关系了。因为是第一次用struts2,也是第一次用webwork,所以有很多不完善,不规范的地方,还望大家来拍砖。

    开发环境:myeclipse5.0 eclipse3.2 jdk5.0

    tomcat5.5 struts2 spring2.0.6 hibernate3.1。本示例通过对一个图书进行管理的系统,提供基本的增加、删除、修改、查询等功能。

    lib包需要以下右图所示的这些包。其中struts2.0.6的下载地址为:

    hibernate3.1的下载地址为:

    spring2.0.6的下载地址为:

    使用的数据库为mysql 5.0,使用的jdbc驱动jar包为:mysql-connection-java-5.0.4-bin

    创建数据表的sql语句为:

    create database game

    create table `books` (
      `book_id` 
    int(11not null default '0',
      `book_name` 
    varchar(200character set gb2312 default null,
      `book_author` 
    varchar(100character set gb2312 default null,
      `book_publish` 
    varchar(100character set gb2312 default null,
      `book_date` date 
    default null,
      `book_isbn` 
    varchar(20default null,
      `book_page` 
    int(11default null,
      `book_price` 
    decimal(10,2default null,
      `book_content` 
    varchar(100character set gb2312 default null,
      
    primary key  (`book_id`)
    ) engine
    =innodb default charset=gbk row_format=compressed;

     

    二、       建立公共类

    1abstractaction

     

    struts2struts1.x的差别,最明显的就是struts2是一个pull-mvc架构。struts1.x 必须继承org.apache.struts.action.action或者其子类,表单数据封装在formbean中。struts 2无须继承任何类型或实现任何接口,表单数据包含在action中,通过gettersetter获取。

    虽然,在理论上struts2action无须实现任何接口或者是继承任何的类,但是,在实际编程过程中,为了更加方便的实现action,大多数情况下都会继承com.opensymphony.xwork2.actionsupport类,并且重载(override

    package com.sterning.commons;

    import com.opensymphony.xwork2.actionsupport;

    public class abstractaction extends actionsupport {
    }

    com.sterning.commons.abstractaction.java

    参考javadoc,可知类实现了接口:

    com.uwyn.rife.continuations.continuableobject

    2pager分页类

    为了增加程序的分页功能,特意建立共用的分页类。

    package com.sterning.commons;

    import java.math.*;

    public class pager {
        
    private int totalrows; //总行数
        private int pagesize = 5//每页显示的行数
        private int currentpage; //当前页号
        private int totalpages; //总页数
        private int startrow; //当前页在数据库中的起始行
        
        
    public pager() {
        }

        
        
    public pager(int _totalrows) {
            totalrows 
    = _totalrows;
            totalpages
    =totalrows/pagesize;
            
    int mod=totalrows%pagesize;
            
    if(mod>0){
                totalpages
    ;
            }

            currentpage 
    = 1;
            startrow 
    = 0;
        }

        
        
    public int getstartrow() {
            
    return startrow;
        }

        
    public int gettotalpages() {
            
    return totalpages;
        }

        
    public int getcurrentpage() {
            
    return currentpage;
        }

        
    public int getpagesize() {
            
    return pagesize;
        }

        
    public void settotalrows(int totalrows) {
            
    this.totalrows = totalrows;
        }

        
    public void setstartrow(int startrow) {
            
    this.startrow = startrow;
        }

        
    public void settotalpages(int totalpages) {
            
    this.totalpages = totalpages;
        }

        
    public void setcurrentpage(int currentpage) {
            
    this.currentpage = currentpage;
        }

        
    public void setpagesize(int pagesize) {
            
    this.pagesize = pagesize;
        }

        
    public int gettotalrows() {
            
    return totalrows;
        }

        
    public void first() {
            currentpage 
    = 1;
            startrow 
    = 0;
        }

        
    public void previous() {
            
    if (currentpage == 1{
                
    return;
            }

            currentpage
    --;
            startrow 
    = (currentpage - 1* pagesize;
        }

        
    public void next() {
            
    if (currentpage < totalpages) {
                currentpage
    ;
            }

            startrow 
    = (currentpage - 1* pagesize;
        }

        
    public void last() {
            currentpage 
    = totalpages;
            startrow 
    = (currentpage - 1* pagesize;
        }

        
    public void refresh(int _currentpage) {
            currentpage 
    = _currentpage;
            
    if (currentpage > totalpages) {
                last();
            }

        }

    }

    com.sterning.commons.pager.java

    同时,采用pagerservice类来发布成为分页类服务pagerservice,代码如下:

    同时,采用pagerservice类来发布成为分页类服务pagerservice,代码如下:
    package com.sterning.commons;

    public class pagerservice {
        
    public pager getpager(string currentpage,string pagermethod,int totalrows) {
            
    //    定义pager对象,用于传到页面
            pager pager = new pager(totalrows);
            
    //    如果当前页号为空,表示为首次查询该页
            
    //    如果不为空,则刷新pager对象,输入当前页号等信息
            if (currentpage != null{
                pager.refresh(integer.parseint(currentpage));
            }

            
    //    获取当前执行的方法,凯发k8网页登录首页,前一页,后一页,尾页。
            if (pagermethod != null{
                
    if (pagermethod.equals("first")) {
                    pager.first();
                }
     else if (pagermethod.equals("previous")) {
                    pager.previous();
                }
     else if (pagermethod.equals("next")) {
                    pager.next();
                }
     else if (pagermethod.equals("last")) {
                    pager.last();
                }

            }

            
    return pager;
        }

    }

    com.sterning.commons.pagerservice.java

    未完待续,下节开始编写数据持久化层.........

    评论

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2007-09-30 09:48 by 阿蜜果
    顶一下!

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-09-30 10:48 by beansoft
    支持!

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-09-30 13:52 by 千里冰封
    国庆了,祝楼主国庆快乐

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-09-30 21:03 by
    学习了,现在在学webwork2~~

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2007-10-04 15:14 by
    good,不错,期待更多与struts2和webwork相关的。

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2007-10-08 21:39 by
    导入你你提供的源码,包也按要求加入了,我的struts2.0.9,提示说三个jsp文件都找不"/struts-tags"。。。。。。。。。。

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2007-10-09 10:38 by
    @hehe
    如果还不行的话,请留下email,我将整个包含在jar包的代码发送给你.

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-10-09 13:06 by
    运行不了啊
    发给包行啊?
    yangjianxiang2@163.com
    谢谢

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-10-09 13:26 by
    yangjianxiang2@163.com
    谢谢

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-10-09 14:24 by
    包解压 出错
    再发下行么?
    谢谢
    yangjianxiang2@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-10-09 19:27 by
    我用的是struts2.0.7,导入你的例子后,resin启动就出错了。你打个完整的包给我好吗?

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-10-09 19:28 by
    我用的是struts2.0.7,导入你的例子后,resin启动就出错了。你打个完整的包给我好吗?

    email:netseas@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2007-10-18 13:04 by
    请打一份给我,ths


    shuisheng.cao@inforlion.com.cn

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2007-10-24 20:14 by
    打个完整的包给我吧,谢谢
    shuishou543@sina.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-10-28 00:57 by
    将爱心进行到底,也给我发一份吧,先致谢了knowless.zh@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-10-30 17:11 by
    我已经搭建起来了,不知道为什么进入增加和修改页面时很慢,查询和翻页比较快,请斑竹或那位大侠指点一下.谢谢.
    邮件或msn: wanliyun1110@hotmail.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2007-10-30 22:34 by
    i can not deploy it.

    severe: exception sending context initialized event to listener instance of class org.springframework.web.context.contextloaderlistener
    org.springframework.beans.factory.beancreationexception: error creating bean with name 'sessionfactory' defined in servletcontext resource [/web-inf/spring-context/applicationcontext.xml]: invocation of init method failed; nested exception is org.hibernate.hibernateexception: hibernate dialect must be explicitly set
    caused by: org.hibernate.hibernateexception: hibernate dialect must be explicitly set
    at org.hibernate.dialect.dialectfactory.determinedialect(

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-01-21 20:21 by
    打个完整的包给我吧,谢谢
    lemuel2525@126.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-01-31 17:33 by
    thank you very much for providing the sample

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-02-10 23:39 by
    e_hang@sina.com.cn
    发个包吧,谢谢!

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-02-10 23:47 by
    刚发现你这个好东西,弄了好久还是运行不了,楼主发个完整的包给我吧,谢谢!
    e_hang@sina.com.cn

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-02-22 22:17 by
    打个完整的包给我吧,谢谢
    good5168@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-02-26 16:49 by
    也给我发一份完整包吧 谢谢楼主
    wy-shaka@hotmail.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-02-27 22:51 by
    弄了两天,没弄出来,着急,!!!为何调的时候会在book.hbm.xml的中的books提示"cannt resolve table books"呢,麻烦楼主发个完整的包给我吧,xiaohuiwork@126.com,谢谢!

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2008-03-01 15:28 by
    我正急用,写论文,也打个完整的包给我吧谢谢了我的邮箱happycatcl@yahoo.cn

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2008-03-03 10:32 by
    cscpswang@qq.com
    整套包

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2008-03-14 14:44 by
    麻烦传给我一份,谢谢了;
    onlyloveyou937@sohu.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-03-15 00:34 by
    type exception report

    message

    description the server encountered an internal error () that prevented it from fulfilling this request.

    exception

    javax.servlet.servletexception: org.springframework.jdbc.uncategorizedsqlexception: hibernate operation: cannot open connection; uncategorized sqlexception for sql [???]; sql state [null]; error code [0]; cannot create poolableconnectionfactory (communications link failure due to underlying exception:

    ** begin nested exception **

    java.net.socketexception
    message: java.net.connectexception: connection refused: connect

    调试有上面的错误信息,能发个完整包给我么
    hncs48hours@126.com
    谢谢!

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-03-15 00:36 by
    我用的是sql server 2000
    hibernate以及数据库该怎么弄?

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-03-15 18:12 by
    导入到myeclipse 6 中提示hibernate不是一个myeclipse工程,这问题怎么解决?难道必须要搭建eclipse-myeclipse环境才可以么?

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2008-03-30 00:00 by
    非常感谢!楼主好人啊!
    对了,麻烦楼主件事好吗?我不会下ognl的源码,可以发一个到我的邮箱吗?5515068@qq.com 谢谢了!!!

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2008-04-17 21:44 by
    将爱心进行到底,也给我发一份吧,先致谢了richard-cao945@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-04-29 10:10 by
    真好啊,搂主业发一份给我吧,谢谢啦,antiwar66@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-05-15 14:23 by
    我也正在学习中,希望楼主能给包发给我
    谢谢!!!

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-05-15 14:25 by
    我的邮箱diyi116@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-05-21 16:36 by
    你好,首先感谢楼主辛勤劳作,源码下载不了。请放个源码给我
    email:dql206@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-05-21 17:34 by
    您好!谢谢您的无私奉献!能发一份儿给我嘛!邮箱是wd_ww_w@yahoo.com.cn

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-05-21 18:18 by
    不错....
    加油

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2008-05-27 09:45 by
    希望楼主给我也发一份 !非常感谢 rex.hao@gmail.com

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2008-06-11 15:21 by
    希望楼主给我也发一份 !非常感谢 mysoft_ok@126.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-06-16 11:55 by
    希望楼主给我也发一份 !非常感谢 oceanyu@126.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-06-27 16:27 by
    谢谢啊,真的很不错!

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2008-07-14 14:09 by
    您好,如何用struts2的标签调用java的静态方法?

    欢迎您,

    这是我的想法,但是不行。:(
    还望指教。

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-09-07 23:05 by
    楼主,可以给我份吗?希望不会迟了就没有了。写感谢楼主咯

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-09-14 23:43 by
    帮帮,楼主发个完整的包给我吧,谢谢!
    辛苦了。
    sw9408@163.com

    本人现正干java,希望能跟楼主交个朋友 我的qq 120372298

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-10-17 17:24 by
    请楼主也给我一份。luoyexian@163.com 谢谢

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-10-22 10:18 by
    commons-collections
    commons-collections-2.1.1

    commons-dbcp
    commons-dbcp-1.2.1

    commons-logging
    commons-logging-1.0.4

    logging-pool
    logging-pool-1.2

    请问这4对jar包,我只用其中的一个行不行?

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-10-31 13:16 by
    我也做了一个struts2 spring2 hibernate3 的购书的,可以不知道怎么会事,后面出问题了,就是jsp跳进action中不做处理直接跳入input对应的页面。而且,如果我不用input就struts.xml就报错。不知道为什么。
    请帮帮忙。我的qq是364215450

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-11-18 11:21 by
    你好。可以发一份给我吗?谢谢 li2004-7-23@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-11-18 14:47 by
    @李志强
    可以!我的可以跑了。很好的

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2008-11-28 16:22 by
    你好。可以发一份给我吗?谢谢 liyinfei6688@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-02-12 15:16 by
    楼主好有才啊!

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2009-02-26 22:48 by
    请发一份给我。
    chenlian1226@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2009-03-02 15:48 by
    严重: context startup failed due to previous errors

    有我一份啊,辛苦了~!
    davidgyg826@gmail.com

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2009-03-03 14:15 by
    哥们, 您好, 看了您做的东西, 很好, 可惜我这里跑不起来 难道是和我的环境有关系吗 能帮忙下吗。 我q 531608565 谢谢您。。

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-03-18 09:50 by
    看了你的介绍受益匪浅,可是运行你的程序老是报包错误,你给看看,实在不行发一个完整的给我,邮箱:q_c114@163.com,谢谢了,下面是异常信息
    java.lang.nosuchmethoderror: net.sf.cglib.proxy.enhancer.setinterceptduringconstruction(z)v
    at org.hibernate.proxy.cgliblazyinitializer.getproxyfactory(cgliblazyinitializer.java:118)
    at org.hibernate.proxy.cglibproxyfactory.postinstantiate(cglibproxyfactory.java:41)
    at org.hibernate.tuple.pojoentitytuplizer.buildproxyfactory(pojoentitytuplizer.java:161)
    at org.hibernate.tuple.abstractentitytuplizer.(abstractentitytuplizer.java:131)
    at org.hibernate.tuple.pojoentitytuplizer.(pojoentitytuplizer.java:55)
    at org.hibernate.tuple.tuplizerlookup.create(tuplizerlookup.java:64)
    at org.hibernate.tuple.entitymetamodel.(entitymetamodel.java:257)
    at org.hibernate.persister.entity.abstractentitypersister.(abstractentitypersister.java:412)
    at org.hibernate.persister.entity.singletableentitypersister.(singletableentitypersister.java:108)
    at org.hibernate.persister.persisterfactory.createclasspersister(persisterfactory.java:55)
    at org.hibernate.impl.sessionfactoryimpl.(sessionfactoryimpl.java:216)
    at org.hibernate.cfg.configuration.buildsessionfactory(configuration.java:1176)
    at org.springframework.orm.hibernate3.localsessionfactorybean.newsessionfactory(localsessionfactorybean.java:805)


    09:21:37,187 warn [pojoentitytuplizer] could not create proxy factory for:com.sterning.books.model.books
    org.hibernate.hibernateexception: cglib enhancement failed: com.sterning.books.model.books
    at org.hibernate.proxy.cgliblazyinitializer.getproxyfactory(cgliblazyinitializer.java:132)
    at org.hibernate.proxy.cglibproxyfactory.postinstantiate(cglibproxyfactory.java:41)
    at org.hibernate.tuple.pojoentitytuplizer.buildproxyfactory(pojoentitytuplizer.java:161)
    at org.hibernate.tuple.abstractentitytuplizer.(abstractentitytuplizer.java:131)
    at org.hibernate.tuple.pojoentitytuplizer.(pojoentitytuplizer.java:55)
    at org.hibernate.tuple.tuplizerlookup.create(tuplizerlookup.java:64)
    at org.hibernate.tuple.entitymetamodel.(entitymetamodel.java:257)
    at org.hibernate.persister.entity.abstractentitypersister.(abstractentitypersister.java:412)
    at org.hibernate.persister.entity.singletableentitypersister.(singletableentitypersister.java:108)
    at org.hibernate.persister.persisterfactory.createclasspersister(persisterfactory.java:55)
    at org.hibernate.impl.sessionfactoryimpl.(sessionfactoryimpl.java:216)
    at org.hibernate.cfg.configuration.buildsessionfactory(configuration.java:1176)
    at org.springframework.orm.hibernate3.localsessionfactorybean.newsessionfactory(localsessionfactorybean.java:805)
    at org.springframework.orm.hibernate3.localsessionfactorybean.buildsessionfactory(localsessionfactorybean.java:745)
    at org.springframework.orm.hibernate3.abstractsessionfactorybean.afterpropertiesset(abstractsessionfactorybean.java:134)
    at org.springframework.beans.factory.support.abstractautowirecapablebeanfactory.invokeinitmethods(abstractautowirecapablebeanfactory.java:1201)

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-04-22 15:55 by
    你真厉害 我老崇拜你了

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2009-05-14 21:09 by
    大虾,能不能做个maven版本的让我们学习学习

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2009-05-16 14:31 by
    楼主,我的邮箱supernebula@126.com,正在学习java,发份源码好好学习,谢谢

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-05-31 17:42 by
    你好。很好的介绍,可以发一份给我吗?谢谢 zhufei1112@yahoo.com.cn

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2009-06-01 14:03 by
    楼主,我好久没用java想学习学习发我一份可以么?
    我邮箱jacksang@yeah.net谢谢

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-06-18 20:12 by
    太感谢你了楼主

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-08-08 09:43 by
    你实在太有才华了

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-08-13 16:25 by
    楼主也发一份给我吧,谢谢!我的邮箱是pan.guanhui@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-08-22 15:31 by
    终于找到个完整版的,麻烦楼主发给我一份。
    1007915459@qq.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-08-24 14:09 by
    谢谢楼主分享,打包的也给我发一份吧,lovesunshine2003@yahoo.cn,再次感谢!

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2009-10-15 21:57 by
    谢谢楼主了,能发份给我吗?lcily2007@126.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-10-23 09:52 by
    导入出错了,麻烦发一个完整的包到minidxer#gmail.com可以吗?谢谢啦!!!

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-11-02 08:36 by
    真的很不错,源代码也能运行,非常感谢。。。

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-11-05 12:35 by
    @zoboya
    可以的 他们都是一样的 只是版本的问题

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2009-12-19 17:25 by
    henhao

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2010-01-07 15:35 by
    急需!!struts2 hibernate spring整合例子!现在遇到大困难!寻求你帮助!谢谢!请给我发一份!邮箱:935670362@qq.com!谢谢了!

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2010-01-20 15:55 by
    终于搞出来了!thank you!

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2010-01-20 15:57 by
    @minidxer
    你自己写个啥!根据他的代码敲进去,对自己还好些。

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2010-03-12 14:03 by
    给我发一个能运行的程序好吗? 谢谢了
    邮箱:tiandh930@163.com

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2010-03-12 17:28 by
    可以运行的! 我直接下载的 不用给我发了!谢谢 能告诉我你的qq号吗?msn也可以

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2010-05-11 14:39 by
    楼主,谢谢您,给我发一份吧!
    huang_zi_juan@sina.com

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2010-07-16 09:00 by
    @hsun
    我也出现这样的问题了

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2011-09-27 20:47 by
    你好啊,可以将整套发给我吗?我按照你 的写法去写,都没有用。是否把它达成包发给我啊?数据库也一起给我!

    # re: struts2 spring2 hibernate3 web应用示例(一)  回复     

    2011-12-16 09:41 by
    试了一下楼主的程序,发现不能通过的有几个要注意的:
    1.spring配置文件:srping-context/applicationcontext.xml。这个要特别注意路径,楼主网页上的代码里路径是:srping-content,(srping-content/applicationcontent.xml )但在web.xml中写的是

    contextconfiglocation
    /web-inf/spring-context/applicationcontext.xml

    所以启动时找不到是肯定的。
    2.log4j.properties文件需要自己添加的。
    3.com.sterning.commons.setcharacterencodingfilter这个可能会报错,楼主没有贴这个类的代码,所以找不到,自己可以写这个类,也可以去掉web.xml中的过滤器配置。
    4.还遇到一个问题:java.lang.illegalstateexception: web app root system property already

    set to different value: 'webapp.root' = [d:\program files\tomcat6

    \webapps\esis\] instead of [d:\program files\tomcat6\webapps\esisone\]

    - choose unique values for the 'webapprootkey' context-param in your

    web.xml files!
    在参照楼主的程序实验时,可能会遇到这个问题,解决方法:在web.xml中加上:
    webapprootkey
    app1.root




    以上是我学习时遇到的问题,如有错误的地方,还请指出来!我也是新手,刚刚开始学ssh框架的web开发。

    # re: struts2 spring2 hibernate3 web应用示例(一)[未登录]  回复     

    2012-04-09 09:28 by
    发分源代码:sinxsoft@gmail.com
    谢谢了。

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


    网站导航:
                  
    相关文章:
     
    网站地图