免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1216 | 回复: 0
打印 上一主题 下一主题

myeclipse和struts2+spring+hibernate混合编程 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-05-19 11:04 |只看该作者 |倒序浏览
导读:
  struts2释出已经很久了,虽然自己现在作GUI开发,不过有时间还是学习下web开发,现在就将我使用myeclipse工具应用struts2 + spring+ hibernate实现CRUD操作的步骤一一纪录下来,为初学者少走弯路略尽绵薄之力!
  首先,myeclipse中web工程目录结构如下图:
  
  


  
      
使用myeclipse开发hibernate和spring的操作我就不详细说了,网上的教程很多,如果有不明白的可以咨询我,呵呵.
    其中持久类AbstractTest,Test,TestDAO,Test.hbm.xml都是myeclipse的hibernate工具生成的.TestAction类是struts2的核心处理类,代码如下:

package com.yangqiang.strutsdemo.web;


import java.util.Collection;

import java.util.List;


import org.apache.log4j.Logger;


import com.opensymphony.xwork2.ActionSupport;

import com.yangqiang.strutsdemo.domain.Test;

import com.yangqiang.strutsdemo.domain.TestDAO;



/** *//**

* 描述:

* @author Stone yang  创建日期:2007-4-24

* @version pattern Study

* 技术支持: http://blog.csdn.net/yq76034150

*/


public class TestAction extends ActionSupport ...{

    private static final Logger log = Logger.getLogger(TestAction.class);


    private Integer id;

    private Integer[] ids;

    protected TestDAO testDao;

    private Test test;

    private Collection testColl;

   


    /** *//**

     * 描述 return 返回 ids。

     * @author Stone yang

     * @date 2007-4-24

     */


    public Integer[] getIds() ...{

        return ids;

    }


    /** *//**

     * 描述:设置ids的值。

     * @param ids

     * @author Stone yang

     * @date 2007-4-24

     */


    public void setIds(Integer[] ids) ...{

        this.ids = ids;

    }


    /** *//**

     * 描述 return 返回 testColl。

     * @author Stone yang

     * @date 2007-4-24

     */


    public Collection getTestColl() ...{

        return testColl;

    }


    /** *//**

     * 描述:设置testColl的值。

     * @param testColl

     * @author Stone yang

     * @date 2007-4-24

     */


    public void setTestColl(Collection testColl) ...{

        this.testColl = testColl;

    }


    /** *//**

     * 描述 return 返回 id。

     * @author Stone yang

     * @date 2007-4-24

     */


    public Integer getId() ...{

        return id;

    }


    /** *//**

     * 描述:设置id的值。

     * @param id

     * @author Stone yang

     * @date 2007-4-24

     */


    public void setId(Integer id) ...{

        this.id = id;

    }


    /** *//**

     * 描述 return 返回 testDao。

     * @author Stone yang

     * @date 2007-4-24

     */


    public TestDAO getTestDao() ...{

        return testDao;

    }


    /** *//**

     * 描述:设置testDao的值。

     * @param testDao

     * @author Stone yang

     * @date 2007-4-24

     */


    public void setTestDao(TestDAO testDao) ...{

        this.testDao = testDao;

    }


    /** *//**

     * 描述 return 返回 test。

     * @author Stone yang

     * @date 2007-4-24

     */


    public Test getTest() ...{

        return test;

    }


    /** *//**

     * 描述:设置test的值。

     * @param test

     * @author Stone yang

     * @date 2007-4-24

     */


    public void setTest(Test test) ...{

        this.test = test;

    }

   


    public String load() ...{

        test = getTestDao().findById(id);

           return SUCCESS;

       }


       @SuppressWarnings("unchecked")


    public String list() ...{

           testColl = getTestDao().findByExample(new Test());

           return SUCCESS;

       }

           


       public String store() ...{

           getTestDao().merge(test);

           return SUCCESS;

       }

      


       public String remove() ...{


        for (int i = 0, size = ids.length; i
applicationContext.xml 主要是工具生成 的,只是将配置文件路径改下,代码如下:







   

        

                        

            /WEB-INF/classes/hibernate.cfg.xml

        

   

   

        

            

        

   
struts.xml  (变化不大,写过以前struts配置文件的不难理解)






   

        

            list.jsp

        

        

            edit.jsp

        

        

            List.action

        

        

            List.action

        

   

struts.properties

struts.objectFactory = spring
web.xml



    Struts2 crud 例程

   

   

        contextConfigLocation

        classpath*:*.xml

   

   

   

        org.springframework.web.context.ContextLoaderListener

   

   

   

        struts2

        

            org.apache.struts2.dispatcher.FilterDispatcher

        

   


   

        struts2

        /*

   


   

        list.jsp

   


list.jsp









    Book List


    ...


        table {...}{

            border: 1px solid black;

            border-collapse: collapse;

        }

        


        table thead tr th {...}{

            border: 1px solid black;

            padding: 3px;

            background-color: #cccccc;

        }

        


        table tbody tr td {...}{

            border: 1px solid black;

            padding: 3px;

        }

   


   

    Book List

   

        

            

               

                    勾选

                    ID

                    名称

                    作者

               

            

            

               

                    

                        ' />

                        

                        

                        

                        

                            '>

                                Edit

                           

                             

                            '>

                                Delete

                           

                        

                    

               

            

        

        Add Test

        


edit.jsp









    Book


   

   

        

            Add Book

        

        

            Edit Book

        

   

   

        

        

        

        

   




本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/55983/showart_693821.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP