这是我为新项目专门搭建的基于全注解方式的SSH基础框架,虽然是老掉牙的的东西,自我感觉很良好,好东西不敢独享,晒晒等拍砖。

概述:基于struts2.23 + spring2.5.6 + hibernate3.6.4 + hibernate-generic-dao1.0(除了spring,我整合的都是最新的GA包,hibernate-generic-dao是google项目库中一个开源的basedao,我灰常喜欢,因为我找不到更好更适合我的)

项目代码是基于eclipse3.6创建的,很简单,大家直接导入则可运行。

1.包结构,源码,测试用例,配置文件一目了然。每个功能模块都在modules包下做开发,配置文件统一在resource管理(基实也没多少配置文件,都用注解嘛)。

2.无论阅读哪个web项目代码,我都是先从web.xml开始,项目有什么东西一清二楚。

我这里将log4j监听放在第一,我想他应该能够从系统启动开启就能记录我的所有日志(求认证)。第二个监听是proxool数据库连接池,听说很高效,所以果断引入(引入步骤搞得复杂吧,我还重写了监听。一切为了稳定,也好扩展我某日喜欢加入动态切换数据源做准备。呵呵)。OpenSessionInView,我想如果你不喜欢可以摘掉,反正我很喜欢。Struts2指定了自定义的struts.xml文件位置,指定扫描注解的action路径。最后是proxool的可视化图形监控,很棒。

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"id="WebApp_ID" version="2.5"><display-name>framework</display-name><context-param><param-name>log4jConfigLocation</param-name><param-value>/WEB-INF/classes/resources/log4j/log4j.properties</param-value></context-param><context-param><param-name>propertyFile</param-name><param-value>/WEB-INF/classes/resources/hibernate/proxool.properties</param-value></context-param><context-param><param-name>contextConfigLocation</param-name><param-value>classpath:resources/spring/applicationContext.xml</param-value></context-param><!-- log4j Listener --><listener><listener-class>org.springframework.web.util.Log4jConfigListener</listener-class></listener><!-- Proxool Listener --><listener><listener-class>org.chinasb.framework.core.db.ProxoolListener</listener-class></listener><!-- Open Session In View Filter --><filter><filter-name>OpenSessionInViewFilter</filter-name><filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class><init-param><param-name>singleSession</param-name><param-value>true</param-value></init-param></filter><filter-mapping><filter-name>OpenSessionInViewFilter</filter-name><url-pattern>/*</url-pattern></filter-mapping><!-- Spring Listener --><listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener><!-- Character Encoding Filter --><filter><filter-name>Set Character Encoding</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><init-param><param-name>encoding</param-name><param-value>UTF-8</param-value></init-param><init-param><param-name>forceEncoding</param-name><!-- 强制进行转码 --><param-value>true</param-value></init-param></filter><filter-mapping><filter-name>Set Character Encoding</filter-name><url-pattern>/*</url-pattern></filter-mapping><!-- 延长action中属性的生命周期, --><filter><filter-name>struts-cleanup</filter-name><filter-class>org.apache.struts2.dispatcher.ActionContextCleanUp</filter-class></filter><filter-mapping><filter-name>struts-cleanup</filter-name><url-pattern>/*</url-pattern></filter-mapping><!-- Struts2 Filter --><filter><filter-name>struts2</filter-name><filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class><init-param><param-name>config</param-name><param-value>struts-default.xml,struts-plugin.xml,resources/struts/struts.xml</param-value></init-param><init-param><param-name>actionPackages</param-name><param-value>org.chinasb.framework.modules</param-value></init-param></filter><filter-mapping><filter-name>struts2</filter-name><url-pattern>/*</url-pattern></filter-mapping><!-- Proxool Monitoring --><servlet><servlet-name>Admin</servlet-name><servlet-class>org.logicalcobwebs.proxool.admin.servlet.AdminServlet</servlet-class></servlet><servlet-mapping><servlet-name>Admin</servlet-name><url-pattern>/admin.html</url-pattern></servlet-mapping><!-- Welcome List --><welcome-file-list><welcome-file>index.html</welcome-file><welcome-file>index.htm</welcome-file><welcome-file>index.jsp</welcome-file></welcome-file-list>
</web-app>

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"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsd"><!-- 使用 annotation --><context:annotation-config /><!-- 使用 annotation 自动注册bean,并检查@Controller, @Service, @Repository注解已被注入 --><context:component-scan base-package="org.chinasb.framework.modules" /><!-- hibernate属性配置 --><context:property-placeholder location="classpath:resources/hibernate/hibernate.properties"/><!-- Hibernate 配置管理 --><import resource="applicationContext-persistence.xml" /></beans>

4.hiberante配置所需的一些属性,指定方言,开始hibernate缓存等,后面还有一个c3p0的数据连接池属性。你们下载的代码里面,数据源方面我换成了c3p0,因为proxool我配置的是随web启动的,而我又不想改成随spring加载启动。所以我开发中注释掉proxool,以后上线再打开。

## hibernate
hibernate.dialect=org.hibernate.dialect.MySQLDialect
hibernate.show_sql=true
hibernate.format_sql=false
hibernate.hbm2ddl.auto=update## hibernate cache
hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider
hibernate.cache.use_query_cache=false
hibernate.cache.use_second_level_cache=true## C3P0 configuration
hibernate.connection.driver_class=com.mysql.jdbc.Driver
hibernate.connection.url=jdbc:mysql://localhost:3306/chinasb??useUnicode=true&characterEncoding=utf-8
hibernate.connection.username=root
hibernate.connection.password=root

5.applicationContext-persistence.xml,这里就是数据源及事务的一些配置了。事务我使用了cglib类级别的代理注解配置方式,如果你喜欢用jdk接口方式动态的代理,可以去掉 proxy-target-class="true"。顺便也保留了声名式事务。

<?xml version="1.0" encoding="UTF-8"?>
<beans 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"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx.xsd"><!-- Proxool 数据源 --><!-- <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"><property name="driverClassName"><value>org.logicalcobwebs.proxool.ProxoolDriver</value></property><property name="url"><value>proxool.default</value></property></bean> --><!-- C3P0 数据源 --><bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"><property name="driverClass" value="${hibernate.connection.driver_class}"/><property name="jdbcUrl" value="${hibernate.connection.url}"/><property name="properties"><props><prop key="user">${hibernate.connection.username}</prop><prop key="password">${hibernate.connection.password}</prop></props></property></bean><!-- SessionFactory --><bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"><property name="dataSource" ref="dataSource" /><property name="packagesToScan" value="org.chinasb.framework.modules.*.model"/><property name="hibernateProperties"><props><prop key="hibernate.dialect">${hibernate.dialect}</prop><prop key="hibernate.show_sql">${hibernate.show_sql}</prop><prop key="hibernate.format_sql">${hibernate.format_sql}</prop><prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop><prop key="hibernate.cache.provider_class">${hibernate.cache.provider_class}</prop><prop key="hibernate.cache.use_query_cache">${hibernate.cache.use_query_cache}</prop><prop key="hibernate.cache.use_second_level_cache">${hibernate.cache.use_second_level_cache}</prop></props></property></bean><!-- 配置事务管理 --><bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"><property name="sessionFactory" ref="sessionFactory" /></bean><!-- 配置注解实现管理事务(cglib:proxy-target-class="true") --><tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true" /><!-- 指定使用cglib --><!-- <aop:aspectj-autoproxy proxy-target-class="true" />  --><!-- 配置事务的传播特性 --><!--<tx:advice id="txAdvice" transaction-manager="transactionManager"><tx:attributes><tx:method name="add*" propagation="REQUIRED" /><tx:method name="edit*" propagation="REQUIRED" /><tx:method name="remove*" propagation="REQUIRED" /><tx:method name="save*" propagation="REQUIRED" /><tx:method name="update*" propagation="REQUIRED" /><tx:method name="delete*" propagation="REQUIRED" /><tx:method name="batchUpdate" propagation="REQUIRED" /><tx:method name="*" read-only="true" /></tx:attributes></tx:advice>--><!-- 配置事务的切入点 --><!--<aop:config><aop:pointcut id="targetMethod" expression="execution(* org.chinasb.framework.modules..service.*.*(..))" /><aop:advisor advice-ref="txAdvice" pointcut-ref="targetMethod" /></aop:config>--></beans>

6.struts.xml,你懂的。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN""http://struts.apache.org/dtds/struts-2.0.dtd"><struts><!-- 开启使用开发模式,详细错误提示 --><constant name="struts.devMode" value="false" /><!-- 将对象交给spring管理 --><constant name="struts.objectFactory" value="spring" /><!-- 指定资源编码类型 --><constant name="struts.i18n.encoding" value="UTF-8" /><!-- 指定每次请求到达,重新加载资源文件 --><constant name="struts.i18n.reload" value="false" /><!-- 指定每次配置文件更改后,自动重新加载 --><constant name="struts.configuration.xml.reload" value="false" /><!-- 国际化资源文件 --><constant name="struts.custom.i18n.resources" value="resources/content/Language" /><!-- 默认后缀名 --><constant name="struts.action.extension" value="do,action,jhtml,," /><!-- Struts Annotation --><constant name="actionPackages" value="org.chinasb.framework.modules"/>
</struts>

好了,下面我简单讲一下开发流程。

在modules下建立模块,和相应的包(action,dao,model,service,util),比如我上面包结构的demo模块。

demo.java,model类,映射数据库中的表,每个model一张表,为了适应basedao,每个model还对应每个dao(不要觉得这是麻烦的)。jpa的注解,你们懂的,不解释。

package org.chinasb.framework.modules.demo.model;import java.io.Serializable;
import java.util.Date;import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;import org.hibernate.annotations.Cache;
import org.hibernate.annotations.CacheConcurrencyStrategy;@Entity
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public class Demo implements Serializable {private static final long serialVersionUID = 1L;@Id@GeneratedValue(strategy = GenerationType.AUTO)private int id;private String title;private String content;private Date publishdate;public int getId() {return id;}public void setId(int id) {this.id = id;}public String getTitle() {return title;}public void setTitle(String title) {this.title = title;}public String getContent() {return content;}public void setContent(String content) {this.content = content;}public Date getPublishdate() {return publishdate;}public void setPublishdate(Date publishdate) {this.publishdate = publishdate;}}

DemoDao,接口类。我想在多数程序员的项目里做的绝大多数事情都是相关数据库的CURD操作,所以基础框架里整合一个强大的BaseDao是必须的,而我选择了开源的GenericDao(觉得不适合你的可以替掉)。直接继承GenericDao接口,指定操作的model,与主键的类型。

package org.chinasb.framework.modules.demo.dao;import org.chinasb.framework.core.base.dao.hibernate.GenericDAO;
import org.chinasb.framework.modules.demo.model.Demo;public interface DemoDao extends GenericDAO<Demo, Integer> {}

DemoDaoImpl,呵,这样写我觉得不麻烦,不多说。@Repository注解交给spring管理。

package org.chinasb.framework.modules.demo.dao.impl;import org.chinasb.framework.core.base.dao.BaseDAO;
import org.chinasb.framework.modules.demo.dao.DemoDao;
import org.chinasb.framework.modules.demo.model.Demo;
import org.springframework.stereotype.Repository;@Repository
public class DemoDaoImpl extends BaseDAO<Demo, Integer> implements DemoDao {}

BaseDAO,主要是注入sessionFactory给hibernate-generic-dao。

package org.chinasb.framework.core.base.dao;import java.io.Serializable;import org.chinasb.framework.core.base.dao.hibernate.GenericDAOImpl;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;public class BaseDAO<T, ID extends Serializable> extends GenericDAOImpl<T, ID> {@Autowired@Overridepublic void setSessionFactory(SessionFactory sessionFactory) {super.setSessionFactory(sessionFactory);}
}

DemoService,接下来就要定义一些相关数据库操作的业务接口给上层使用了,这里主要列出了baseDao能操作的部分,像分页,字段过滤查询方面的没有列出。

package org.chinasb.framework.modules.demo.service;import java.util.List;
import org.chinasb.framework.modules.demo.model.Demo;public interface DemoService {/*** 增加或更新demo** @param demo* @return*/public boolean save(Demo demo);/*** 批量增加或更新demo** @param demo* @return*/public boolean[] save(Demo[] demos);/*** 删除demo** @param demo* @return*/public boolean remove(Demo demo);/*** 批量删除demo** @param demos*/public void remove(Demo[] demos);/*** 根据主键删除demo** @param id* @return*/public boolean removeById(Integer id);/*** 批量根据主键删除demo** @param ids*/public void removeByIds(Integer[] ids);/*** 查询demo数据记录集** @return*/public List<Demo> findAll();/*** 根据主键查询demo** @param id* @return*/public Demo findById(Integer id);/*** 批量根据主键查询demo记录集** @param ids* @return*/public Demo[] findByIds(Integer[] ids);/*** 持久化session数据到数据库*/public void flush();
}

DemoServiceImpl,接口实现。这里全用注解控制了事务,及演示如何使用baseDao。当然强大的baseDao并不仅仅这些方法,还有分页等强大的查询数据功能。大家可以在http://code.google.com/p/hibernate-generic-dao/ 进行查看。

package org.chinasb.framework.modules.demo.service.impl;import java.util.List;import javax.annotation.Resource;import org.chinasb.framework.modules.demo.dao.DemoDao;
import org.chinasb.framework.modules.demo.model.Demo;
import org.chinasb.framework.modules.demo.service.DemoService;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;@Service
@Transactional(readOnly = true, propagation = Propagation.SUPPORTS)
public class DemoServiceImpl implements DemoService {@Resourceprivate DemoDao demoDao;@Override@Transactional(readOnly = false, propagation = Propagation.REQUIRED)public boolean save(Demo demo) {return demoDao.save(demo);}@Override@Transactional(readOnly = false, propagation = Propagation.REQUIRED)public boolean[] save(Demo[] demos) {return demoDao.save(demos);}@Override@Transactional(readOnly = false, propagation = Propagation.REQUIRED)public boolean remove(Demo demo) {return demoDao.remove(demo);}@Override@Transactional(readOnly = false, propagation = Propagation.REQUIRED)public void remove(Demo[] demos) {demoDao.remove(demos);}@Override@Transactional(readOnly = false, propagation = Propagation.REQUIRED)public boolean removeById(Integer id) {return demoDao.removeById(id);}@Override@Transactional(readOnly = false, propagation = Propagation.REQUIRED)public void removeByIds(Integer[] ids) {demoDao.removeByIds(ids);}@Overridepublic List<Demo> findAll() {return demoDao.findAll();}@Overridepublic Demo findById(Integer id) {return demoDao.find(id);}@Overridepublic Demo[] findByIds(Integer[] ids) {return demoDao.find(ids);}@Overridepublic void flush() {demoDao.flush();}
}

DemoAction,这里演示了查看,增,删功能。也是基于注解的方式,继承了baseAction。

package org.chinasb.framework.modules.demo.action;import java.util.Date;
import java.util.List;import javax.annotation.Resource;import org.apache.struts2.convention.annotation.Action;
import org.apache.struts2.convention.annotation.Result;
import org.chinasb.framework.core.base.action.BaseAction;
import org.chinasb.framework.modules.demo.model.Demo;
import org.chinasb.framework.modules.demo.service.DemoService;
import org.springframework.stereotype.Controller;@Controller
public class DemoAction extends BaseAction {private static final long serialVersionUID = 1L;@Resourceprivate DemoService demoService;@Action(value = "/demoAction", results = { @Result(name = SUCCESS, location = "/manager/modules/demo/index.jsp") })@Overridepublic String execute() {List<Demo> demoList = demoService.findAll();httpServletRequest.setAttribute("DEMO_LIST", demoList);return SUCCESS;}@Action(value = "/demoAddAction", results = { @Result(name = SUCCESS, location = "/demoAction", type = "redirect") })public String add() {Demo demo = new Demo();demo.setTitle(httpServletRequest.getParameter("title"));demo.setContent(httpServletRequest.getParameter("content"));demo.setPublishdate(new Date());demoService.save(demo);return SUCCESS;}@Action(value = "/demoDeleteAction", results = { @Result(name = SUCCESS, location = "/demoAction", type = "redirect") })public String delete() {demoService.removeById(Integer.parseInt(httpServletRequest.getParameter("id")));return SUCCESS;}
}

BaseAction,这里只封装了基本的request,reponse,context,session,大家按需要继续完善。

package org.chinasb.framework.core.base.action;import java.util.Map;import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.ServletResponseAware;
import org.apache.struts2.interceptor.SessionAware;
import org.apache.struts2.util.ServletContextAware;import com.opensymphony.xwork2.ActionSupport;public class BaseAction extends ActionSupport implements ServletContextAware,ServletResponseAware, ServletRequestAware, SessionAware {private static final long serialVersionUID = 1L;protected ServletContext servletContext;protected HttpServletRequest httpServletRequest;protected HttpServletResponse httpServletResponse;protected HttpSession httpSession;protected Map<String, Object> session;@Overridepublic void setServletContext(ServletContext context) {this.servletContext = context;}@Overridepublic void setServletResponse(HttpServletResponse response) {this.httpServletResponse = response;}@Overridepublic void setServletRequest(HttpServletRequest request) {this.httpServletRequest = request;this.httpSession = request.getSession();}@Overridepublic void setSession(Map<String, Object> session) {this.session = session;}}

最后就是测试用例了,这里使用了经典的junit4.4版本,依然是注解方式。

BaseTestTemplate,大家都不想每个用例都去写一次读取applicationContext吧,把一些公用的东西封装起来吧。

package org.chinasb.framework.core.base.test;import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.transaction.TransactionConfiguration;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:resources/spring/applicationContext.xml" })
@TransactionConfiguration(defaultRollback = false)
@Transactional(readOnly = true, propagation = Propagation.SUPPORTS)
public class BaseTestTemplate {}

DemoActionTest,简单的测试用例,这里只是为了说明如何在这个框架里进行单元测试。所以我的目的达到了,简单吧。

package org.chinasb.framework.modules.demo.action;import java.util.Date;import javax.annotation.Resource;import org.chinasb.framework.core.base.test.BaseTestTemplate;
import org.chinasb.framework.modules.demo.model.Demo;
import org.chinasb.framework.modules.demo.service.DemoService;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.test.context.transaction.AfterTransaction;
import org.springframework.test.context.transaction.BeforeTransaction;public class DemoActionTest extends BaseTestTemplate {@Resourceprivate DemoService demoService;@Beforepublic void setUp() throws Exception {System.out.println("测试开始");}@Afterpublic void tearDown() throws Exception {System.out.println("测试结束");}@BeforeTransactionpublic void beforeTransaction() {System.out.println("事务开始");}@AfterTransactionpublic void afterTransaction() {System.out.println("事务结束");}@Testpublic void testInsert() {Demo demo = new Demo();demo.setTitle("junit-test");demo.setContent("junit-content");demo.setPublishdate(new Date());demoService.save(demo);}@Testpublic void testInsertMore() {Demo[] demos = new Demo[10];for (int i = 0; i < 10; i++) {Demo demo = new Demo();demo.setTitle("junit-test" + i);demo.setContent("junit-content" + i);demo.setPublishdate(new Date());demos[i] = demo;}demoService.save(demos);}
}


测试表:

/*
Navicat MySQL Data TransferSource Server         : localhost
Source Server Version : 50150
Source Host           : localhost:3306
Source Database       : chinasbTarget Server Type    : MYSQL
Target Server Version : 50150
File Encoding         : 65001Date: 2011-07-07 20:40:57
*/SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `demo`
-- ----------------------------
DROP TABLE IF EXISTS `demo`;
CREATE TABLE `demo` (`id` int(11) NOT NULL AUTO_INCREMENT,`content` varchar(255) DEFAULT NULL,`publishdate` datetime DEFAULT NULL,`title` varchar(255) DEFAULT NULL,PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8;-- ----------------------------
-- Records of demo
-- ----------------------------
INSERT INTO demo VALUES ('131', 'test', '2011-07-06 01:29:19', 'test');
INSERT INTO demo VALUES ('132', 'test-2', '2011-07-07 20:40:38', 'test-2');

众望所归,出图:

终于写完了,好累啊。下一步跟汪兄商量如何完美整合他那个强大的数据级权限中间件(ralasafe),这样在未来一投入使用即附带有权限控制,多爽。好了,大家看得也累,喜欢的,不喜欢的都出来拍拍砖吧。不对的地方,请各位N人多多指正。

源码:http://www.chinasb.org/wp-content/uploads/2011/07/framework.zip

Google Code:http://code.google.com/p/ssh-base-framework/

Google Code Download:http://code.google.com/p/ssh-base-framework/downloads/list

Google Code SVN:http://ssh-base-framework.googlecode.com/svn/trunk/

转载于:https://www.cnblogs.com/coolattt/archive/2012/04/18/2455921.html

[转]SSH框架搭建相关推荐

  1. [转载]SSH框架搭建详细图文教程

    什么是SSH? SSH对应 struts spring hibernatestruts 采用MVC模式,主要是作用于用户交互spring 采用IOC和AOP~作用比较抽象,是用于项目的松耦合hiber ...

  2. android开发ssh框架搭建,基于SSH框架的Android系统的研究

    摘要: 本文设计开发了一个基于SSH框架的酒店Android手机查询系统.该系统采用面向对象的设计思想进行分析与设计,利用Eclipse,MyEclipse,Android SDK,Tomcat和My ...

  3. SSH框架搭建问题总结

    1.eclipse中tomcat配置是否正确?能否在网页中访问的到? 如何在eclipse中配置tomcat就不说了,我们看下问题,在网页上访问tomcat的地址,为什么出现404错误呢? 解决办法: ...

  4. java 建立ssh隧道_JAVA SSH框架搭建流程

    百度出来的,觉得思路很好: 搭建struts应用 2.1 引入需要的jar包 commons-fileupload-1.2.1.jar文件上传 commons-logging-1.0.4.jar日志包 ...

  5. 基于Maven的SSH框架搭建

    2019独角兽企业重金招聘Python工程师标准>>> 1.工程介绍 工程是结合了Spring+struts2+hibernate,实现了一个简单的form表单提交的功能,可能需要对 ...

  6. SSH框架搭建整合详细步骤及运行流程

    准备整合环境 数据库环境 MySQL 数据库中创建一个名称为 ssh 的数据库,并在数据库中创建一个名称为 user 的表 配置 Struts2 环境 1.创建项目并导入 Struts2 框架所需的 ...

  7. SSH框架搭建 笔记 (含spring注解驱动)

    分类: web 开发2014-04-27 12:33 354人阅读 评论(0) 收藏 举报 框架springinterface注解 好久没有搭建框架了,今天整理下以前的知识,整合下SSH,没想到手生了 ...

  8. ssh 框架搭建出现错误

    [color=red][b]最近刚学习是使用SSH出现下面错误,在网上搜了半天也不知道什么问题,拜托各位大虾了. 如下错误 [/b][/color] 2009-03-19 17:01:58,937 E ...

  9. SSH框架搭建的时候遇到的问题

    1.spring-web.jar包问题:使用user libaries方式,识别不到,于是出现了下面问题 java.lang.ClassNotFoundException: org.springfra ...

  10. eclipse搭建SSH框架详解

    2019独角兽企业重金招聘Python工程师标准>>> SSH框架是最常用的框架之一,在搭建SSH框架的时候总有人遇到这样,那样的问题.下面我介绍一下SSH框架搭建的全过程.  第一 ...

最新文章

  1. 听说你要离开大厂去创业公司做CTO?
  2. 磁盘管理及文件系统管理
  3. 19年8月 字母哥 第五章 静态资源与模板引擎的整合 用热点公司网不行
  4. iphone个系列尺寸_iPhone“立体边框”壁纸来了,拥有3D效果
  5. 计算机网络参数怎么看,电脑显示器参数详解 看完秒懂! 显示器参数怎么看?...
  6. linux sqlite3使用界面,Linux 中 sqlite3 基本操作
  7. macOS设备上的照片导入Bridge
  8. 解决虚拟机内服务器卡顿,不流畅问题
  9. VMware16虚拟机:下载和安装教程
  10. 计算机职称考试试题 操作题,2018职称计算机考试Excel备考试题及答案9-excel操作练习题...
  11. postgresql和mysql语句区别_postgresql和mysql语句区别
  12. MDK3358平台QT示例-ADS1110温度采集示例
  13. 【月光博客】腾讯微信推出广告联盟
  14. 许奔创新社-第21问:如何唤醒创造力?
  15. 手机APP抓包问题总结及相关解决方案
  16. [笔记]OpenCV+FFmpeg+Qt实现视频编辑器之OpenCV视频lO接口
  17. java swt 双屏_YOTA3手机和kindle合二为一,让你玩的同时享受阅读的乐趣
  18. vue获取地图经纬度
  19. c11计算机考试,2015年计算机二级考试C++备考练习试题及答案(6)
  20. void Delay(__IO u32 nCount)最简单的延时函数

热门文章

  1. 并发情况下使用List,多线程操作List,CopyOnWriteArrayList的使用
  2. Cause: java.sql.SQLException: Connection is read-only. Queries leading to data使用MySQL的时候遇到的问题,后续继续解决
  3. 【渝粤教育】国家开放大学2018年秋季 0363-21T市场调查与预测 参考试题
  4. [渝粤教育] 中国地质大学 大学英语(7) 复习题
  5. A Singular Value Decomposition Approach For Recommendation Systems
  6. 微信如何实现自动跳转到用其他浏览器打开指定页面下载APP 1
  7. 原码、反码、补码、移码的换算关系
  8. 手写一个类django框架
  9. 使用CSS创建Digg样式风格的导航栏或菜单
  10. IOS Apple Pay