java ssh架构_从Java Web 基础看SSH架构

Java Web开发现在已然成为大型Wed项目的标准,之前一直盲目的使用框架,往往知其然不知其所以然。在经过一段时间的学习与开发,大概掌握了其脉络的基础上,对其做一定总结。

一、Java Web 基础

一个典型的Java Web项目往往包含这些元素:Jsp页面、Servlet、Listener、Filter,以及配置文件web.xml。其中:Jsp和Servlet基本是一回事,主要用来响应客户端的请求。当然Jsp中可以直接嵌入HTML标签,主要还是负责展现。

Listener则是负责监听Web应用的改变,包括整个应用的改变(继承接口ServletContextListener)、session的改变(继承接口 HttpSessionListener)等。Listener伴随着Web应用一起启动,因而有时也不用来监听,而是执行某些附加功能的初始化工作。

Filter顾名思义,则是实现对请求的过滤,现在常常用于某些MVC框架的中。

最后web.xml则是对Web应用版本、首页等基本特性的配置,以及以上元素的在Web中的配置。典型的web.xml配置文件如下:

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">

index.jsp

contextConfigLocation

/WEB-INF/applicationContext.xml

ListenerXClass

FilterX

FilterXClass

FilterX

/*

ServletX

ServletXClass

ServletX

/ServletX/path

此外,一个典型的Java Web应用,其目录结构为:

|-- WebRoot

|

|-- META-INF

|   |-- MANIFEST.MF

|

|-- WEB-INF

|   |-- classes(servlet, listener, filter...)

|   |-- lib

|   |-- web.xml

|

|-- index.jsp

二、Struts

Struts是Java Web开发中非常流行的MVC框架,功能非常强大。然而,它的实现原理并没有它看上去那么高深,本质上Struts就是个Filter!所以使用它的时候,我们需要在web.xml中配置(struts2.3):

struts2

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

struts2

/*

配好这个Filter之后,所有的请求就都被Struts接管了。然后请求的处理逻辑由另一个配置文件struts.xml来设置,包括action的跳转逻辑以及Struts的interceptor(用来代替原web.xml中的Filter)的配置。

struts PUBLIC

"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"

"http://struts.apache.org/dtds/struts-2.3.dtd">

/index.jsp

/error.jsp

/registerSuccess.jsp

/registerFail.jsp

/userList.jsp

此外,action的处理类常常继承自Struts的ActionSupport,其参数传递方式包括属性setter传递、domainModel传递、modelDriven传递(要继承ModelDriven接口)、原生Request传递(要继承RequestAware接口)。

三、Spring 和 Hibernate

Spring和Hibernate一般要同时设置,因为Hibernate基本上把自己全部交给了Spring去管理(连配置都是)。而Spring对应第一部分所讲的Java web元素而言,就是个Listener(当然责任要远大于一个Listener,Listener只是起到一个程序入口的作用)。所以在使用Spring的时候,我们需要在web.xml中配置(spring4.1):

contextConfigLocation

classpath:applicationContext.xml

org.springframework.web.context.ContextLoaderListener

Spring的作用主要有两个:

(1)管理对象的容器,即 Application Context, 负责对象的注入,称为依赖注入(DI),或控制反转(IOC)

(2)声明式事务管理,将事务的开始与提交以面向切面的方式(AOP)嵌入到程序中。

而Hibernate主要负责与数据库进行连接,即 SessionFactory,还有将数据库表映射成为对象,并维护对象之间一对多等的对应关系,以面向对象的方式对数据库进行增删改查。

Spring与Hibernate都可以配置在Spring的配置文件applicationContext.xml中:

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:xsi="http://www.w3.org/2001/XMLSchema-instance"

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.xsd">

destroy-method="close">

class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">

user_package.model

hibernate.dialect=org.hibernate.dialect.MySQLDialect

hibernate.show_sql=true

class="org.springframework.orm.hibernate4.HibernateTemplate">

class="org.springframework.orm.hibernate4.HibernateTransactionManager">

另外,程序中的annotation配置如下:

(1)Spring中的bean:

import javax.annotation.Resource;

import org.springframework.stereotype.Component;

//...

@Component("beanName")//表明这是Spring管理的一个bean

public class DaoBean {

private HibernateTemplate hibernateTemplate;

//...

public HibernateTemplate getHibernateTemplate () {

return hibernateTemplate;

}

@Resource(name = "hibernateTemplate")// 以 by name 的方式注入bean

public void setHibernateTemplate (HibernateTemplate hibernateTemplate) {

this.hibernateTemplate = hibernateTemplate;

}

//...

}

(2)Hibernate中的实体类,即Model:

import javax.persistence.Entity;

import javax.persistence.GeneratedValue;

import javax.persistence.Id;

//...

@Entity //表明这是一个Hibernate的实体类

public class EntityModel {

private int id;

//...

@Id  //设置主键

@GeneratedValue  //设置自增

public int getId() {

return id;

}

public void setId(int id) {

this.id = id;

}

//...

}

四、Struts与Spring、Hibernate的整合

Struts由于跟Spring一样都占据一种web组件(一个是Filter,一个是Listener),所以地位比较超然,既可以让Spring作为容器来管理action对象,也可以自己管理对象。

当Struts让Spring来管理对象时,需要通过一个插件 Struts-Spring plugin 来实现。通过这个插件,Struts就可以到Spring的容器中去获取对象了。此外其配置文件struts.xml需要加上:

另外,配置action时,其class属性也应改为Spring中bean的名字,即:

最后,在action的源代码中加入Spring的annotation就可以了:

@Component("userBeanName")

@Scope("prototype")

public class UserAction extends ActionSupport {

private UserManager userManager;

//...

public UserManager getUserManager() {

return userManager;

}

@Resource

public void setUserManager(UserManager userManager) {

this.userManager = userManager;

}

//...

}

需要注意的是一定设置Scope为"prototype",这样当多个用户请求时,Spring就会创建多个action实例来处理请求;否则action就是单例,会引发未知的效果。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值