ssh注解版

SSH不是一个框架,而是多个框架(struts+spring+hibernate)的集成,是目前较流行的一种Web应用程序开源集成框架,用于构建灵活、易于扩展的多层Web应用程序

Struts作为系统的整体基础架构,负责MVC的分离,在Struts框架的模型部分,控制业务跳转,利用Hibernate框架对持久层提供支持。Spring一方面作为一个轻量级的IoC容器,负责查找、定位、创建和管理对象及对象之间的依赖关系,另一方面能使Struts和Hibernate更好地工作。

在搭建框架之前导入相应的jar包

struts2相关的jar包:

commons-io-2.0.1.jar     commons项目(commons项目就是java中一些常用的公共的组件)的io子项目,是处理异常的

commons-fileupload-1.2.2.jar           commons项目中的关于文件上传的包, struts2.1.6版本后必须加入此文件

commons-lang3-3.1.jar       commons项目中的lang包

freemarker-2.3.19.jar             支持freemarker(struts2的UI标签的模板使用FreeMarker编写)的,在webwork中也有

javassist-3.11.0.GA.jar        一个开源的分析、编辑和创建Java字节码的类库(hibernate中也需要,引入其中一个即可)

ognl-3.0.5.jar                支持ognl语言(对象图导航语言(Object Graph Navigation  Language))的,struts2框架通过其读写对象的属                   性,webwork也支持ognl语言

struts2-core-2.3.4.1.jar        struts2的核心jar包

xwork-core-2.3.4.1.jar        xwork的核心jar包,由于struts2是webwork的升级版本,所以必定对其有所依赖(struts2在其基础上                  构建)


hibernate相关的jar包:

antlr-2.7.6.jar

commons-collections-3.1.jar               commons项目中的子项目,是对collection集合的封装

dom4j-1.6.1.jar                                              对dom4j的封装,是解析xml文件的

hibernate-jpa-2.0-api-1.0.0.Final.jar      对JPA(Java持久化API)规范的支持

hibernate3.jar                                     hibernate的核心jar包                 

jta-1.1.jar                                            hibernate对事务的处理

slf4j-api-1.6.1.jar                               一个日志系统的服务的api,SLF4J是一个用于日志系统的简单Facade,允许最终用户在部署其应用时使用                        其所希望的日志系统


spring-aop相关的jar包:

aopalliance.jar

aspectjrt.jar

aspectjweaver.jar

spring-aop-3.2.5.RELEASE.jar


spring-core相关的jar包:

commons-logging-1.1.3.jar

spring-beans-3.2.5.RELEASE.jar

spring-context-3.2.5.RELEASE.jar

spring-core-3.2.5.RELEASE.jar

spring-expression-3.2.5.RELEASE.jar


spring-orm相关的jar包:

c3p0-0.9.2-pre1.jar

mchange-commons-java-0.2.3.4.jar

mysql-connector-java-5.0.8-bin.jar

spring-jdbc-3.2.5.RELEASE.jar

spring-orm-3.2.5.RELEASE.jar

spring-tx-3.2.5.RELEASE.jar


spring-web相关的jar包:

spring-web-3.2.5.RELEASE.jar

struts2-spring-plugin-2.3.4.1.jar


web.xml配置



 
    OpenSessionInView
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
 

 
    OpenSessionInView
    *.action
 

 
    struts2
    org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
 

 
    struts2
    /*
 

 
    contextConfigLocation
    classpath:bean.xml
 

 
    org.springframework.web.context.ContextLoaderListener
 

 
    index.jsp
 



bean.xml


      xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:context="http://www.springframework.org/schema/context"
      xmlns:aop="http://www.springframework.org/schema/aop"
      xmlns:tx="http://www.springframework.org/schema/tx"
 xmlns:mvc="http://www.springframework.org/schema/mvc"

      xsi:schemaLocation="

 http://www.springframework.org/schema/beans 
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
 
 http://www.springframework.org/schema/context
      http://www.springframework.org/schema/context/spring-context-3.0.xsd
   
 http://www.springframework.org/schema/aop 
 http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
 
 http://www.springframework.org/schema/tx
      http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    
      http://www.springframework.org/schema/mvc
      http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        
      ">
     








 
     






true
update




entity.Dept

 

   
 














  




   entity实体类


@Entity

@Table(name="dept")

public class Dept {

 @Id

 @GeneratedValue(strategy=GenerationType.IDENTITY)

private Integer id;

 @Column(name="name")

private String name;









你可能感兴趣的:(ssh)