基于maven的ssh框架一步一步搭建
地址:http://www.open-open.com/lib/view/open1405494785437.html
一、新建maven项目,配置ssh框架pom的最低支持
1、新建一个maven项目
2、添加一个web.xml
1
2
3
4
5
6
7
8
9
|
<? 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 >limanman</ display-name >
</ web-app >
|
3、基本ssh框架pom.xml配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
< project xmlns = "http://maven.apache.org/POM/4.0.0" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation = "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
< modelVersion >4.0.0</ modelVersion >
< groupId >com.winssage.fengshu</ groupId >
< artifactId >winssage</ artifactId >
< version >0.0.1-SNAPSHOT</ version >
< packaging >war</ packaging >
< name >winssage</ name >
< url >http://maven.apache.org</ url >
< properties >
< project.build.sourceEncoding >UTF-8</ project.build.sourceEncoding >
</ properties >
< dependencies >
< dependency >
< groupId >junit</ groupId >
< artifactId >junit</ artifactId >
< version >4.10</ version >
< scope >test</ scope >
</ dependency >
<!-- 添加SSH依赖 --> <!-- Struts2 --> < dependency >
< groupId >org.apache.struts</ groupId >
< artifactId >struts2-core</ artifactId >
< version >2.3.1</ version >
</ dependency >
< dependency >
< groupId >org.apache.struts</ groupId >
< artifactId >struts2-spring-plugin</ artifactId >
< version >2.3.1</ version >
</ dependency >
<!-- 添加Hibernate依赖 --> < dependency >
< groupId >org.hibernate</ groupId >
< artifactId >hibernate-core</ artifactId >
< version >3.6.5.Final</ version >
</ dependency >
< dependency >
< groupId >commons-dbcp</ groupId >
< artifactId >commons-dbcp</ artifactId >
< version >1.4</ version >
</ dependency >
<!-- 添加Log4J依赖 --> < dependency >
< groupId >log4j</ groupId >
< artifactId >log4j</ artifactId >
< version >1.2.16</ version >
</ dependency >
< dependency >
< groupId >org.slf4j</ groupId >
< artifactId >slf4j-api</ artifactId >
< version >1.6.1</ version >
</ dependency >
< dependency >
< groupId >org.slf4j</ groupId >
< artifactId >slf4j-nop</ artifactId >
< version >1.6.4</ version >
</ dependency >
<!-- 添加javassist --> < dependency >
< groupId >javassist</ groupId >
< artifactId >javassist</ artifactId >
< version >3.11.0.GA</ version >
</ dependency >
<!-- 添加Spring依赖 --> < dependency >
< groupId >org.springframework</ groupId >
< artifactId >spring-core</ artifactId >
< version >3.1.1.RELEASE</ version >
</ dependency >
< dependency >
< groupId >org.springframework</ groupId >
< artifactId >spring-beans</ artifactId >
< version >3.1.1.RELEASE</ version >
</ dependency >
< dependency >
< groupId >org.springframework</ groupId >
< artifactId >spring-context</ artifactId >
< version >3.1.1.RELEASE</ version >
</ dependency >
< dependency >
< groupId >org.springframework</ groupId >
< artifactId >spring-jdbc</ artifactId >
< version >3.1.1.RELEASE</ version >
</ dependency >
< dependency >
< groupId >org.springframework</ groupId >
< artifactId >spring-orm</ artifactId >
< version >3.1.1.RELEASE</ version >
</ dependency >
< dependency >
< groupId >org.springframework</ groupId >
< artifactId >spring-web</ artifactId >
< version >3.1.1.RELEASE</ version >
</ dependency >
</ dependencies >
</ project >
|
二、maven webproject 整合struts2
1、web.xml 加入中心拦截器配置
1
2
3
4
5
6
7
8
9
|
< filter >
< filter-name >struts2</ filter-name >
< filter-class >org.apache.struts2.dispatcher.FilterDispatcher</ filter-class >
</ filter >
< filter-mapping >
< filter-name >struts2</ filter-name >
< url-pattern >/*</ url-pattern >
</ filter-mapping >
|
2、加入log4j.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<? xml version = "1.0" encoding = "UTF-8" ?>
<!DOCTYPE log4j:configuration PUBLIC "-//Apache//DTD Log4j 1.2//EN" "http://logging.apache.org/log4j/docs/api/org/apache/log4j/xml/log4j.dtd">
< log4j:configuration >
< appender class = "org.apache.log4j.ConsoleAppender" name = "RootConsoleAppender" >
< param name = "Threshold" value = "debug" />
< layout class = "org.apache.log4j.PatternLayout" >
< param name = "ConversionPattern" value = "%d{ABSOLUTE} %-5p [%c{1}] %m%n" />
</ layout >
</ appender >
< category name = "com.fengshu.limanman.winssage" >
< priority value = "debug" />
</ category >
< category name = "org.springframework" >
< priority value = "warn" />
</ category >
< category name = "org.hibernate" >
< priority value = "warn" />
</ category >
< category name = "org.dbunit" >
< priority value = "warn" />
</ category >
< category name = "com.mchange.v2" >
< priority value = "warn" />
</ category >
< category name = "org.apache" >
< priority value = "warn" />
</ category >
< category name = "org.logicalcobwebs" >
< priority value = "warn" />
</ category >
< category name = "com.opensymphony" >
< priority value = "warn" />
</ category >
< root >
< level value = "info" />
< appender-ref ref = "RootConsoleAppender" />
</ root >
</ log4j:configuration >
|
3、引入struts2.xml 根据约定由于配置原则,将此配置文件放在更目录即可
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<? 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 >
< package name = "fengshu" namespace = "/user" extends = "struts-default" >
<!--<action name="user"
class="com.fengshu.limanman.winssage.controller.LoginController">
<result name="success">/pages/index.jsp</result>
</action>-->
</ package >
</ struts >
|
4、建一个测试jsp在webapp/pages/index.jsp
1
2
3
4
5
6
7
8
9
10
11
|
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> < html >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" >
< title >Insert title here</ title >
</ head >
< body >hello limanman
</ body >
</ html >
|
5、写一个controller
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.fengshu.limanman.controller;
import org.apache.log4j.Logger;
import com.opensymphony.xwork2.ActionSupport;
public class LoginController extends ActionSupport {
private static final long serialVersionUID = 1L;
private Logger log=Logger.getLogger( this .getClass());
public String login() {
log.info( "hello i am limanman" );
return "succerss" ;
}
} |
6、配置struts2.xml
1
2
3
4
5
6
7
8
9
10
11
12
|
<? 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 >
< package name = "fengshu" namespace = "/" extends = "struts-default" >
< action name = "user" class = "com.fengshu.limanman.controller.LoginController" >
< result name = "success" >/pages/index.jsp</ result >
</ action >
</ package >
</ struts >
|
7、暂时注释掉pom.xml中的struts2-spring-plugin
因为还没有整合spring,如果加入struts2-spring-plugin将会报空指针异常,整合spring后需要加入此jar包,下面将不再提及。
8、配置jetty运行环境,开发的时候我们一般使用jetty服务器,而不用tomcat
在pom.xml中加入jetty插件,并且配置根目录目录
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
< build >
< plugins >
<!-- 配置加入jetty服务器,开发时我们一般使用jetty服务器 -->
< plugin >
< groupId >org.mortbay.jetty</ groupId >
< artifactId >jetty-maven-plugin</ artifactId >
< configuration >
<!-- 设置扫描target/classes内部文件变化时间间隔 -->
< scanIntervalSeconds >2</ scanIntervalSeconds >
< webApp >
< contextPath >/limanman</ contextPath >
</ webApp >
</ configuration >
</ plugin >
<!-- compiler插件, 设定JDK版本 -->
< plugin >
< groupId >org.apache.maven.plugins</ groupId >
< artifactId >maven-compiler-plugin</ artifactId >
< version >3.0</ version >
< configuration >
< source >1.6</ source >
< target >1.6</ target >
< showWarnings >true</ showWarnings >
</ configuration >
</ plugin >
<!-- war打包插件, 设定war包名称不带版本号 -->
< plugin >
< groupId >org.apache.maven.plugins</ groupId >
< artifactId >maven-war-plugin</ artifactId >
< version >2.3</ version >
< configuration >
< warName >winssage</ warName >
</ configuration >
</ plugin >
<!-- eclipse插件, 设定wtp版本 -->
< plugin >
< groupId >org.apache.maven.plugins</ groupId >
< artifactId >maven-eclipse-plugin</ artifactId >
< version >2.9</ version >
< configuration >
< downloadSources >true</ downloadSources >
< downloadJavadocs >false</ downloadJavadocs >
< wtpversion >2.0</ wtpversion >
</ configuration >
</ plugin >
< plugin >
< groupId >org.apache.maven.plugins</ groupId >
< artifactId >maven-dependency-plugin</ artifactId >
< executions >
< execution >
< id >install</ id >
< phase >install</ phase >
< goals >
< goal >sources</ goal >
</ goals >
</ execution >
</ executions >
</ plugin >
<!-- 用于支持跨模块加载配置文件 -->
< plugin >
< groupId >org.apache.maven.plugins</ groupId >
< artifactId >maven-resources-plugin</ artifactId >
< version >2.5</ version >
< configuration >
< encoding >UTF-8</ encoding >
< nonFilteredFileExtensions >
< nonFilteredFileExtension >dll</ nonFilteredFileExtension >
< nonFilteredFileExtension >so</ nonFilteredFileExtension >
</ nonFilteredFileExtensions >
</ configuration >
</ plugin >
</ plugins >
</ build >
|
9、第一个里程碑,第一次运行项目
(1)jetty:run -Djetty.port=9080 -Dmaven.test.skip=true 跑起项目
(2)效果截图
三、将spring 整合进来
1、web.xml加入spring监听
1
2
3
4
5
6
7
8
|
< context-param >
< param-name >contextConfigLocation</ param-name >
< param-value >classpath*:META-INF/spring/ApplicationContext.xml</ param-value >
</ context-param >
<!-- Spring Listener -->
< listener >
< listener-class >org.springframework.web.context.ContextLoaderListener</ listener-class >
</ listener >
|
2、将strut2交给spring管理
(1)修改strut2.xml
1
2
3
4
5
6
7
8
9
10
11
12
|
<? 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 >
< package name = "fengshu" namespace = "/" extends = "struts-default" >
< action name = "user" class = "loginController" >
< result name = "success" >/pages/index.jsp</ result >
</ action >
</ package >
</ struts >
|
(2)添加spring配置文件
1
2
|
< bean id = "loginController" class = "com.fengshu.limanman.controller.LoginController" >
</ bean >
|
(3)运行 it is aok!
四、spring再整合hibernate
1、加入datasource
1
2
3
4
5
6
7
8
|
< bean id = "dataSource" class = "org.apache.commons.dbcp.BasicDataSource" >
< property name = "driverClassName" value = "com.mysql.jdbc.Driver" >
</ property >
< property name = "url" value = "jdbc:mysql://localhost:3306/ddd" >
</ property >
< property name = "username" value = "root" ></ property >
< property name = "password" value = "root" ></ property >
</ bean >
|
2、加入sessionFactory
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
< bean id = "sessionFactory"
class = "org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean" >
< property name = "dataSource" >
< ref bean = "dataSource" />
</ property >
< property name = "annotatedClasses" >
< list >
< value >com.winssage.bslogic.core.User</ value >
</ list >
</ property >
< property name = "hibernateProperties" >
< props >
< prop key = "hibernate.dialect" >
org.hibernate.dialect.Mysql5Dialect
</ prop >
< prop key = "hibernate.show_sql" >true</ prop >
< prop key = "hibernate.hbm2ddl.auto" >update</ prop >
</ props >
</ property >
</ bean >
|
3、运行项目后报错
经检查发现是因为没有mysql驱动,也没有hibernate-anation 包
给改hibernate pom.xml 配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!-- 添加Hibernate依赖 --> < dependency >
< groupId >org.hibernate</ groupId >
< artifactId >hibernate</ artifactId >
< version >3.2.6.ga</ version >
< type >jar</ type >
< scope >compile</ scope >
< exclusions >
< exclusion >
< artifactId >jta</ artifactId >
< groupId >javax.transaction</ groupId >
</ exclusion >
</ exclusions >
</ dependency >
< dependency >
< groupId >org.hibernate</ groupId >
< artifactId >hibernate-annotations</ artifactId >
< version >3.2.0.ga</ version >
< type >jar</ type >
< scope >compile</ scope >
</ dependency >
< dependency >
< groupId >org.hibernate</ groupId >
< artifactId >ejb3-persistence</ artifactId >
< version >1.0.0</ version >
</ dependency >
< dependency >
< groupId >mysql</ groupId >
< artifactId >mysql-connector-java</ artifactId >
< version >5.0.5</ version >
</ dependency >
|
4、再次启动
已自动更新了表,注意应该讲hibernate.hbm2ddl.auto设置为create才能自动创建表
到此hibernate已经成功添加进来
来自:http://my.oschina.net/fengshuzi/blog/291421
相关推荐
"构建基于Maven的SSH原型项目"这个主题,旨在帮助初学者理解和掌握如何使用这些技术搭建一个基础的Web应用。 首先,Maven是Apache开发的一个项目管理工具,它通过一个项目对象模型(Project Object Model,POM)来...
在这个基于Maven的SSH框架搭建实例中,我们将探讨如何利用这些框架以及Maven构建工具来搭建一个完整的Web项目。 首先,Spring框架是核心,它提供了依赖注入(DI)和面向切面编程(AOP)的功能,以实现松耦合和更好...
整合SSH框架意味着在Maven项目中配置Struts2、Spring和Hibernate的依赖,以及相应的插件和配置文件。Struts2提供MVC模式的前端控制,Spring负责依赖注入和事务管理,Hibernate则处理对象关系映射,实现数据库操作。 ...
在Maven环境中搭建SSH框架,你需要先配置项目的pom.xml文件,引入所需的依赖。对于Struts2,Spring和Hibernate,你需要指定它们的版本号。例如: ```xml <groupId>org.apache.struts <artifactId>struts2-core...
现在,我们将详细介绍如何使用Maven来搭建一个基于SSH的Java Web项目。 首先,我们需要确保已经安装了Java Development Kit (JDK) 和 Apache Maven。JDK是Java编程的基础,而Maven则是管理和构建Java项目的关键工具...
现在我们将深入探讨如何使用Maven来搭建一个基于SSH框架的项目。 首先,创建一个新的Maven项目。在IDE如IntelliJ IDEA或Eclipse中,选择“New -> Maven Project”,填写项目的基本信息,包括GroupId(通常代表公司...
SSH+maven搭建的项目
现在,让我们详细探讨"Maven ssh整合框架"的相关知识点。 1. Maven: Maven是Apache软件基金会开发的一款项目管理工具,它通过POM(Project Object Model)文件来管理项目的依赖、构建过程和配置。Maven提供了标准...
通过上述步骤,你就可以在Maven下成功地搭建一个基于注解的SSH项目框架。这个框架的配置文件已包含了详细的注释,方便初学者理解。下载提供的webFrame文件,你可以直接参考其中的代码和配置,进行学习和实践。
Maven搭建SSH框架Demo,Maven是可以解决包依赖问题,在搭建SSH(struts2,spring3,hibernate)框架时不用考虑包的依赖问题,提高了开发效率,该demo已经完成框架的搭建,可以直接拿来使用
"Maven 搭建SSH框架"意味着我们将利用Maven这个项目管理工具来构建和管理SSH应用。Maven通过POM(项目对象模型)文件统一管理项目的依赖关系、构建过程和插件,使得开发、测试和部署更加规范和便捷。 以下是搭建SSH...
这个“用基于Maven的SSH框架写的宿舍管理系统”是一个利用这些框架构建的完整应用实例,旨在解决高校或住宿机构的宿舍管理问题。 1. **Struts2**:作为MVC(模型-视图-控制器)架构的一部分,Struts2负责处理HTTP...
在Java开发中,Maven的整合SSH框架主要涉及到以下几个步骤: 1. **配置POM.xml**:首先,你需要在项目的POM.xml文件中添加SSH框架以及Maven的相关依赖。这些依赖包括Spring的核心库、Struts2的核心库、Hibernate的...
SSH是JavaEE中三种框架(Struts+Spring+Hibernate)的集成框架,是目前比较流行的一种Java Web开源框架。 SSH主要用于Java Web的开发。现在SSH有SSH1和SSH2两种,区别在于Struts的版本是struts1.x还是2.x。
本文将详细讲解如何使用Maven构建工具来搭建一个基于SSM的项目。 首先,我们需要理解SSM框架的各个组成部分: 1. **Spring**:这是一个全面的Java应用框架,提供依赖注入(DI)、面向切面编程(AOP)、事务管理等...
总的来说,这个基于Maven的SSH例子是一个很好的学习资源,它可以帮助开发者了解如何将这三个框架集成到一起,实现一个完整的Java Web应用。通过实践这个例子,你可以深入理解Maven的依赖管理,以及SSH框架在实际项目...
这是自己根据别人写的资料,自己搭载的框架,运行没有问题,用的是eclipse_luna(mars与最新的maven我没有弄好,报错),jak1.7,tomcat7.数据库用的是mysql,希望对初学者有用!
在本项目中,“maven整合SSH框架”意味着开发者已经将这三个框架集成到一个Maven项目中,使得它们能够协同工作。这通常涉及到在pom.xml文件中添加相应的依赖,配置各个框架的配置文件(如struts.xml、spring-context...
以下将详细介绍SSH框架搭建的步骤。 **Spring框架** 1. **环境准备**:首先确保已安装JDK,并配置好环境变量。然后下载Spring框架的库文件,将其添加到项目的类路径中。 2. **创建项目**:使用IDE如Eclipse或...