使用eclipse + maven搭建SSM框架

SSM(Spring+SpringMVC+MyBatis)框架集由Spring、SpringMVC、MyBatis三个开源框架整合而成,常作为数据源较简单的web项目的框架.这篇文章主要介绍了eclipse + maven搭建SSM框架 ,需要的朋友可以参考下
.

SSM (SSM 框架集)

SSM(Spring+SpringMVC+MyBatis)框架集由Spring、SpringMVC、MyBatis三个开源框架整合而成,常作为数据源较简单的web项目的框架。

其中spring是一个轻量级的控制反转(IoC)和面向切面(AOP)的容器框架。

SpringMVC分离了控制器、模型对象、分派器以及处理程序对象的角色,这种分离让它们更容易进行定制。

MyBatis是一个支持普通SQL查询,存储过程和高级映射的优秀持久层框架。

0、系统环境

1)Windows 10 企业版

2)JDK 1.8.0_131

3)Eclipse Java EE IDE for Web Developers Version: Neon.3 Release (4.6.3)

4)Tomcat 8.5

1、maven下载及配置

maven的下载地址:http://maven.apache.org/download.cgi

下载后解压并配置相关的环境变量

在命令行窗口中输入:mvn –v,如果看见下图则说明maven安装配置完毕

2.maven仓库的设置

因为众所周知的原因,直接访问maven公共仓库的速度比较慢,所以推荐使用阿里的maven仓库镜像。

编辑setting.xml文件,在mirrors节点下,新增如下内容,这样从仓库中下载jar包速度上会快很多。

?
1
2
3
4
5
6
nexus-aliyun
*
Nexus aliyun
http: //maven.aliyun.com/nexus/content/groups/public

3、eclipse整合maven

设置eclipse自带maven整合工具,在Preferences中找到Maven节点,观察User Settings项的设置是否正确

点击Installations节点,添加maven runtime

4、创建maven项目时设置JDK

问题描述:eclipse创建maven项目时,显示的JDK默认版本为1.5,实际使用的JDK为1.8,如何修改?

解决方案:找到本机maven仓库存放位置,比如:${user.home}/.m2/路径,编辑settings.xml文件,在profiles节点下配置

?
1
2
3
4
5
< profile >
< id >jdk-1.8 id > < activation > < activeByDefault >true activeByDefault > < jdk >1.8 jdk >
activation > < properties > < maven.compiler.source >1.8 maven.compiler.source > < maven.compiler.target >1.8 maven.compiler.target > < maven.compiler.compilerVersion >1.8 maven.compiler.compilerVersion >
  properties >
profile >

5、使用maven创建SSM项目

1)选择Maven Project

2)点击Next,选择默认工作空间位置

3)选择web类型

4)填写GroupID、ArtifactID

Group ID:相当于一个组织

Artifact ID:相当于这个组织下的一个具体项目

Packege:根据Group ID和Artifact ID生成一个默认的名称

5)创建出maven项目

6)问题描述:提示错误:

在eclipse中设置Server为Tomcat,注意JRE设置为安装的JDK的jre

在工程上右键,查看工程属性,找到Java Build Path,添加Server Runtime为Tomcat

点击Finish。

7)在项目上右键,查看项目信息

默认的Dynamic Web Module为2.3,使用Tomcat 8.5,需要修改为3.1(注:此处会遇到eclipse中不能设置tomcat8.5的问题)

修改方法:

① maven工程所在目录下org.eclipse.wst.common.project.facet.core.xml

编辑内容,如下所示

?
1
2
3
4
5
6
"1.0" encoding= "UTF-8" ?>
  "wst.jsdt.web" />
"java" version= "1.8" />
"jst.web" version= "2.3" /> "wst.jsdt.web" version= "1.0" />

改为

?
1
2
3
4
5
"1.0" encoding= "UTF-8" ?>
"wst.jsdt.web" />
"java" version= "1.8" />
"jst.web" version= "3.1" /> "wst.jsdt.web" version= "1.0" />

② maven工程下的web.xml文件修改为

?
1
2
"1.0" encoding= "UTF-8" ?> "http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation= "http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version= "3.1" metadata-complete= "true" >

③ pom.xml文件中修改build节点,添加如下内容

?
1
2
3
4
5
6
7
org.apache.maven.plugins maven-compiler-plugin
  1.8
1.8
 

④ 修改后,在项目上右键,找到Maven属性下的Update Project,点击

⑤ 选择该项目进行更新,如果怕不能强制更新,可以勾选Force Update of Snapshots/Releases

⑥ 点击OK后更新maven项目,再观察项目属性,Module已经变为3.1

6、下载ssm框架所需jar包

修改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
116
117
118
119
"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/maven-v4_0_0.xsd" >
  4.0 . 0
  cn.temptation
  ssm
  war
  0.0 . 1 -SNAPSHOT
  ssm Maven Webapp
  http: //maven.apache.org
 
 
  4.3 . 8 .RELEASE
 
 
 
 
   org.springframework
   spring-core
   ${spring.version}
 
 
   org.springframework
   spring-aop
   ${spring.version}
 
 
   org.springframework
   spring-web
   ${spring.version}
 
 
   org.springframework
   spring-webmvc
   ${spring.version}
 
 
   org.springframework
   spring-jdbc
   ${spring.version}
 
 
   org.springframework
   spring-tx
   ${spring.version}
 
 
 
   org.aspectj
   aspectjrt
   1.8 . 0
 
 
   org.aspectj
   aspectjweaver
   1.8 . 0
 
 
 
   org.mybatis
   mybatis
   3.3 . 0
 
 
 
   mysql
   mysql-connector-java
   5.1 . 26
 
 
 
   com.alibaba
   druid
   1.0 . 20
 
 
 
   org.mybatis
   mybatis-spring
   1.2 . 3
 
 
 
   javax.servlet
   jstl
   1.2
 
 
 
   log4j
   log4j
   1.2 . 17
 
 
   org.slf4j
   slf4j-api
   1.7 . 21
 
 
 
   junit
   junit
   3.8 . 1
   test
 
 
 
  ssm
 
  
   org.apache.maven.plugins
   maven-compiler-plugin
  
    1.8
    1.8
  
  
 
 

保存后,可以看到相关jar包被下载至本地仓库

7、完善项目结构

因为服务端maven项目的标准结构有四个子包:src/main/java、src/main/resources、src/test/java、src/test/resources,这里缺少了src/test/resources,所以手动补上。

在项目中新建Source Folder

创建src/test/resources目录后,工程如下图所示

右键查看项目属性,点击Deployment Assembly,移除test和target

移除后如下图

8、创建项目用的配置文件

创建log4j.properties文件,内容如下:

?
1
2
3
4
5
6
7
8
9
10
11
#USE THIS SETTING FOR OUTPUT MYBATIS`s SQL ON THE CONSOLE
log4j.rootLogger=DEBUG, Console
#Console
log4j.appender.Console=org.apache.log4j.ConsoleAppender
log4j.appender.Console.layout=org.apache.log4j.PatternLayout
log4j.appender.Console.layout.ConversionPattern=%d [%t] %-5p [%c] - %m%n
log4j.logger.java.sql.ResultSet=INFO
log4j.logger.org.apache=INFO
log4j.logger.java.sql.Connection=DEBUG
log4j.logger.java.sql.Statement=DEBUG
log4j.logger.java.sql.PreparedStatement=DEBUG

创建mybatis-config.xml文件,内容如下:

?
1
2
3
4
5
6
7
8
9
10
"1.0" encoding= "UTF-8" ?>
  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd" >
 
 
   < package name= "cn.temptation.domain" />
 

创建spring-mvc.xml文件,内容如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"1.0" encoding= "UTF-8" ?>
"http://www.springframework.org/schema/beans"
  xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xmlns:context= "http://www.springframework.org/schema/context"
  xmlns:mvc= "http://www.springframework.org/schema/mvc"
  xsi:schemaLocation="
   http: //www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
   http: //www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
   http: //www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
 
  package = "cn.temptation.*" />
 
 
 
  default -servlet-handler />
 
  "viewResolver"
   class = "org.springframework.web.servlet.view.InternalResourceViewResolver" >
   "prefix" value= "/" />
   "suffix" value= ".jsp" />
 

创建spring-mybatis.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
"1.0" encoding= "UTF-8" ?>
"http://www.springframework.org/schema/beans"
  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.xsd">
 
 
  "dataSource" class = "com.alibaba.druid.pool.DruidDataSource" >
   "url" value= "jdbc:mysql://localhost:3306/test" />
   "username" value= "root" />
   "password" value= "sa" />
 
 
  "sqlSessionFactory" class = "org.mybatis.spring.SqlSessionFactoryBean" >
   "dataSource" ref= "dataSource" />
  
   "mapperLocations" value= "classpath:cn/temptation/dao/*.xml" />
   "configLocation" value= "classpath:mybatis-config.xml" >
 
 
  class = "org.mybatis.spring.mapper.MapperScannerConfigurer" >
   "basePackage" value= "cn.temptation.dao" />
   "sqlSessionFactoryBeanName" value= "sqlSessionFactory" />
 

创建spring-tx.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
"1.0" encoding= "UTF-8" ?>
"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/beans http://www.springframework.org/schema/beans/spring-beans.xsd
   http: //www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
   http: //www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
   http: //www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
 
  class = "true" />
 
  "txManager" class = "org.springframework.jdbc.datasource.DataSourceTransactionManager" >
   "dataSource" ref= "dataSource" />
 
 
  "txAdvice" transaction-manager= "txManager" >
  
   
    "add*" propagation= "REQUIRED" isolation= "DEFAULT" read-only= "false" rollback- for = "Exception" />
    "delete*" propagation= "REQUIRED" isolation= "DEFAULT" read-only= "false" rollback- for = "Exception" />
    "update*" propagation= "REQUIRED" isolation= "DEFAULT" read-only= "false" rollback- for = "Exception" />
  
 
 
  class = "true" >
  
   "txAdvice" pointcut= "within(cn.temptation.web..*)" />
 

9、编写服务端代码


编写User实体类,代码如下:

?
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
package cn.temptation.domain;
/**
  * 用户信息
  */
public class User {
  // 成员变量
  private Integer userid;
  private String username;
  private String password;
  // 构造函数
  public User() {
   super ();
  }
  public User(Integer userid, String username, String password) {
   super ();
   this .userid = userid;
   this .username = username;
   this .password = password;
  }
  // 成员方法
  public Integer getUserid() {
   return userid;
  }
  public void setUserid(Integer userid) {
   this .userid = userid;
  }
  public String getUsername() {
   return username;
  }
  public void setUsername(String username) {
   this .username = username;
  }
  public String getPassword() {
   return password;
  }
  public void setPassword(String password) {
   this .password = password;
  }
}

编写UserController控制器,代码如下:

?
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
package cn.temptation.web;
import javax.annotation.Resource;
import javax.servlet.http.HttpSession;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import cn.temptation.dao.UserDao;
import cn.temptation.domain.User;
/**
  * 用户控制器
  */
@Controller
@RequestMapping (value = "/user" )
public class UserController {
  @Resource
  private UserDao userDao;
  @RequestMapping ( "/view" )
  public String view() {
   return "main/login" ;
  }
  @RequestMapping ( "/indexview" )
  public String index() {
   return "main/index" ;
  }
  @RequestMapping (value = "/login" , method = RequestMethod.POST)
  public ModelAndView login(User model, HttpSession session) {
   User user = userDao.findByUsername(model.getUsername());
   if (user == null || !user.getPassword().equals(model.getPassword())) {
    return new ModelAndView( "redirect:/login.jsp" );
   } else {
    session.setAttribute( "user" , user);
    ModelAndView mav = new ModelAndView();
    mav.setViewName( "index" );
    return mav;
   }
  }
}

编写UserDao数据访问层接口,代码如下:

?
1
2
3
4
5
package cn.temptation.dao;
import cn.temptation.domain.User;
public interface UserDao {
  public abstract User findByUsername(String username);
}

编写UserMapper.xml数据访问层映射文件,代码如下:

?
1
2
3
4
5
6
7
8
"1.0" encoding= "UTF-8" ?>
"-//mybatis.org//DTD Mapper 3.0//EN"
   "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
"cn.temptation.dao.UserDao" >
 

10、编写客户端代码


编写login.jsp登录页,代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<%@ page language= "java" contentType= "text/html; charset=UTF-8" pageEncoding= "UTF-8" %>
"-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >
"Content-Type" content= "text/html; charset=UTF-8" >
登录
"user/login" method= "post" >
"text" id= "txtUsername" name= "username" placeholder= "请输入账号" />
"password" id= "txtPassword" name= "password" placeholder= "请输入密码" />
"submit" value= "提交" />
"reset" value= "重置" />

编写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" %>
"-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >
"Content-Type" content= "text/html; charset=UTF-8" >
主页

欢迎,${user.username }

11、使用maven构建项目

在项目上右键,找到Maven属性的Update Project,也可以Alt+F5操作

修改项目编译路径为JRE系统类库,否则后续操作出错

项目上右键,找到Run As属性,找到Maven install

点击执行,项目运行还是使用web工程的部署运行方式

运行项目,观察是否报错,登录页面,登录成功,跳转到主页



. .

原文链接:https://www.cnblogs.com/knightsu/p/knightsu.html


你可能感兴趣的:(ssm搭建(一))