spring-boot+mybatis+mysql+maven整合(附带自己整合的项目)

最近在学习springboot,整合了一个spring-boot+mybatis,看了很多教程,都没成功,具体的整合流程,大家 看这篇基本就行了,再down下我自己的项目,大家参照着看,希望能帮到大家。

项目地址:整合的项目下载地址

参照的博客主要地址:点击打开链接          项目中的测试代码,为另一个博客的,但是由于搭建项目的拉扯周期比较长,已经找不到原地址了,

LZ今天自己搭建了下Spring boot+Mybatis,比原来的Spring+SpringMVC+Mybatis简单好多。其实只用Spring boot也可以开发,但是对于多表多条件分页查询,Spring boot就有点力不从心了,所以LZ把Mybatis整合进去,不得不说,现在的框架搭建真的是方便。话不多说,进入正题。

一、java web开发环境搭建

  网上有很多教程,参考教程:http://www.cnblogs.com/Leo_wl/p/4752875.html 

二、Spring boot搭建

  1、Intellij idea菜单栏File->new->project。

  

  2、选择左侧栏中spring initializr,右侧选择jdk版本,以及默认的Service URL,点击next。

  

  /3、然后填写项目的Group、Artifact等信息,helloworld阶段选默认就可以了,点击next。

  

  4、左侧点击Web,中间一侧选择Web,然后左侧选择SQL,中间一侧选择JPA、Mybatis、MYSQL(LZ数据库用的是mysql,大家可以选择其他DB),点击next。

  

  5、填写Project name 等信息,然后点击Finish。

  

  至此,一个maven web项目就创建好了,目录结构如下:

  

这样,Spring boot就搭建好了,pom.xml里已经有了Spring boot的jar包,包括我们的mysql数据连接的jar包。Spring boot内置了类似tomcat这样的中间件,所以,只要运行DemoApplication中的main方法就可以启动项目了。我们测试一下。

在src/main/java下新建目录com/demo/entity/User。

复制代码
package com.demo.entity;

public class User {
private String name;

</span><span style="color:#0000ff;">public</span><span style="color:#000000;"> String getName() {
    </span><span style="color:#0000ff;">return</span><span style="color:#000000;"> name;
}

</span><span style="color:#0000ff;">public</span> <span style="color:#0000ff;">void</span><span style="color:#000000;"> setName(String name) {
    </span><span style="color:#0000ff;">this</span>.name =<span style="color:#000000;"> name;
}

}

复制代码

相同目录下新建com/demo/controller/TestBootController。

复制代码
package com.demo.controller;

import com.demo.entity.User;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@EnableAutoConfiguration
@RequestMapping("/testboot")
public class TestBootController {
@RequestMapping(“getuser”)
public User getUser() {
User user = new User();
user.setName(“test”);
return user;
}
}

复制代码

spring boot启动DemoAplication是需要扫描它下面的Controller等类的,所以将DemoApplication移动到com/demo目录下。还有就是Spring boot启动默认是要加载数据源的,所以我们在src/main/resources下新建application.yml:

按 Ctrl+C 复制代码
按 Ctrl+C 复制代码

  或者将pom.xml中加载数据源的jar包先注释掉也可以。

/<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.0</version>
</dependency>
/

最终的目录结构如下,

启动DemoApplication的main方法,访问http://localhost:8080/testboot/getuser即可。

 三、整合Mybatis

  1、集成druid,使用连接池。pom.xml中添加:

<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.0</version>
</dependency>

  最终的pom.xml文件:

复制代码
<?xml version=“1.0” encoding=“UTF-8”?>
<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>
&lt;groupId&gt;com.arm&lt;/groupId&gt;
&lt;artifactId&gt;demo&lt;/artifactId&gt;
&lt;version&gt;0.0.1-SNAPSHOT&lt;/version&gt;
&lt;packaging&gt;jar&lt;/packaging&gt;

&lt;name&gt;demo&lt;/name&gt;
&lt;description&gt;Demo project <span style="color:#0000ff;">for</span> Spring Boot&lt;/description&gt;

&lt;parent&gt;
    &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
    &lt;artifactId&gt;spring-boot-starter-parent&lt;/artifactId&gt;
    &lt;version&gt;1.5.8.RELEASE&lt;/version&gt;
    &lt;relativePath/&gt; &lt;!-- lookup parent from repository --&gt;
&lt;/parent&gt;

&lt;properties&gt;
    &lt;project.build.sourceEncoding&gt;UTF-8&lt;/project.build.sourceEncoding&gt;
    &lt;project.reporting.outputEncoding&gt;UTF-8&lt;/project.reporting.outputEncoding&gt;
    &lt;java.version&gt;1.8&lt;/java.version&gt;
&lt;/properties&gt;

&lt;dependencies&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
        &lt;artifactId&gt;spring-boot-starter-data-jpa&lt;/artifactId&gt;
    &lt;/dependency&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;org.mybatis.spring.boot&lt;/groupId&gt;
        &lt;artifactId&gt;mybatis-spring-boot-starter&lt;/artifactId&gt;
        &lt;version&gt;1.3.1&lt;/version&gt;
    &lt;/dependency&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
        &lt;artifactId&gt;spring-boot-starter-web&lt;/artifactId&gt;
    &lt;/dependency&gt;

    &lt;dependency&gt;
        &lt;groupId&gt;mysql&lt;/groupId&gt;
        &lt;artifactId&gt;mysql-connector-java&lt;/artifactId&gt;
        &lt;scope&gt;runtime&lt;/scope&gt;
    &lt;/dependency&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
        &lt;artifactId&gt;spring-boot-starter-test&lt;/artifactId&gt;
        &lt;scope&gt;test&lt;/scope&gt;
    &lt;/dependency&gt;


    &lt;dependency&gt;
        &lt;groupId&gt;com.alibaba&lt;/groupId&gt;
        &lt;artifactId&gt;druid&lt;/artifactId&gt;
        &lt;version&gt;1.1.0&lt;/version&gt;
    &lt;/dependency&gt;

&lt;/dependencies&gt;

&lt;build&gt;
    &lt;plugins&gt;
        &lt;plugin&gt;
            &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
            &lt;artifactId&gt;spring-boot-maven-plugin&lt;/artifactId&gt;
        &lt;/plugin&gt;
    &lt;/plugins&gt;
&lt;/build&gt;

</project>

复制代码

在application.yml中添加数据源、Mybatis的实体和配置文件位置。

复制代码
#默认使用配置
spring:
profiles:
active: dev

#公共配置与profiles选择无关 mapperLocations指的路径是src/main/resources
mybatis:
typeAliasesPackage: com.xdd.entity
mapperLocations: classpath:mapper/*.xml


#开发配置
spring:
profiles: dev

datasource:
url: jdbc:mysql://localhost:3306/test
username: root
password: root
driver-class-name: com.mysql.jdbc.Driver
# 使用druid数据源
type: com.alibaba.druid.pool.DruidDataSource

复制代码

就这样就整合完成了!我们测试一下。

用MyBatis Generator自动生成代码,参考博文:http://blog.csdn.net/zhshulin/article/details/23912615 这里列一下自动生成的代码。

复制代码
import com.xdd.entity.User;
import org.springframework.stereotype.Component;

public interface UserDao {
int deleteByPrimaryKey(Integer id);

</span><span style="color:#0000ff;">int</span><span style="color:#000000;"> insert(User record);

</span><span style="color:#0000ff;">int</span><span style="color:#000000;"> insertSelective(User record);

User selectByPrimaryKey(Integer id);

</span><span style="color:#0000ff;">int</span><span style="color:#000000;"> updateByPrimaryKeySelective(User record);

</span><span style="color:#0000ff;">int</span><span style="color:#000000;"> updateByPrimaryKey(User record);

}

复制代码

UserMapper.xml

复制代码
<?xml version=“1.0” encoding=“UTF-8” ?>
<!DOCTYPE mapper PUBLIC “-//mybatis.org//DTD Mapper 3.0//EN” “http://mybatis.org/dtd/mybatis-3-mapper.dtd” >
<mapper namespace=“com.xdd.dao.UserDao” >
<resultMap id=“BaseResultMap” type=“com.xdd.entity.User” >
<id column=“id” property=“id” jdbcType=“INTEGER” />
<result column=“user_name” property=“userName” jdbcType=“VARCHAR” />
<result column=“password” property=“password” jdbcType=“VARCHAR” />
<result column=“age” property=“age” jdbcType=“INTEGER” />
</resultMap>
<sql id=“Base_Column_List” >
id, user_name, password, age
</sql>
<select id=“selectByPrimaryKey” resultMap=“BaseResultMap” parameterType=“java.lang.Integer” >
select
<include refid=“Base_Column_List” />
from user_t
where id = #{id,jdbcType=INTEGER}
</select>
<delete id=“deleteByPrimaryKey” parameterType=“java.lang.Integer” >
delete from user_t
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id=“insert” parameterType=“com.xdd.entity.User” >
insert into user_t (id, user_name, password,
age)
values (#{id,jdbcType=INTEGER}, #{userName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},
#{age,jdbcType=INTEGER})
</insert>
<insert id=“insertSelective” parameterType=“com.xdd.entity.User” >
insert into user_t
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test=“id != null” >
id,
</if>
<if test=“userName != null” >
user_name,
</if>
<if test=“password != null” >
password,
</if>
<if test=“age != null” >
age,
</if>
</trim>
<trim prefix=“values (” suffix=")" suffixOverrides="," >
<if test=“id != null” >
#{id,jdbcType=INTEGER},
</if>
<if test=“userName != null” >
#{userName,jdbcType=VARCHAR},
</if>
<if test=“password != null” >
#{password,jdbcType=VARCHAR},
</if>
<if test=“age != null” >
#{age,jdbcType=INTEGER},
</if>
</trim>
</insert>
<update id=“updateByPrimaryKeySelective” parameterType=“com.xdd.entity.User” >
update user_t
<set >
<if test=“userName != null” >
user_name = #{userName,jdbcType=VARCHAR},
</if>
<if test=“password != null” >
password = #{password,jdbcType=VARCHAR},
</if>
<if test=“age != null” >
age = #{age,jdbcType=INTEGER},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id=“updateByPrimaryKey” parameterType=“com.xdd.entity.User” >
update user_t
set user_name = #{userName,jdbcType=VARCHAR},
password = #{password,jdbcType=VARCHAR},
age = #{age,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
复制代码
复制代码
public class User {
private Integer id;
</span><span style="color:#0000ff;">private</span><span style="color:#000000;"> String userName;

</span><span style="color:#0000ff;">private</span><span style="color:#000000;"> String password;

</span><span style="color:#0000ff;">private</span><span style="color:#000000;"> Integer age;

</span><span style="color:#0000ff;">public</span><span style="color:#000000;"> Integer getId() {
    </span><span style="color:#0000ff;">return</span><span style="color:#000000;"> id;
}

</span><span style="color:#0000ff;">public</span> <span style="color:#0000ff;">void</span><span style="color:#000000;"> setId(Integer id) {
    </span><span style="color:#0000ff;">this</span>.id =<span style="color:#000000;"> id;
}

</span><span style="color:#0000ff;">public</span><span style="color:#000000;"> String getUserName() {
    </span><span style="color:#0000ff;">return</span><span style="color:#000000;"> userName;
}

</span><span style="color:#0000ff;">public</span> <span style="color:#0000ff;">void</span><span style="color:#000000;"> setUserName(String userName) {
    </span><span style="color:#0000ff;">this</span>.userName = userName == <span style="color:#0000ff;">null</span> ? <span style="color:#0000ff;">null</span><span style="color:#000000;"> : userName.trim();
}

</span><span style="color:#0000ff;">public</span><span style="color:#000000;"> String getPassword() {
    </span><span style="color:#0000ff;">return</span><span style="color:#000000;"> password;
}

</span><span style="color:#0000ff;">public</span> <span style="color:#0000ff;">void</span><span style="color:#000000;"> setPassword(String password) {
    </span><span style="color:#0000ff;">this</span>.password = password == <span style="color:#0000ff;">null</span> ? <span style="color:#0000ff;">null</span><span style="color:#000000;"> : password.trim();
}

</span><span style="color:#0000ff;">public</span><span style="color:#000000;"> Integer getAge() {
    </span><span style="color:#0000ff;">return</span><span style="color:#000000;"> age;
}

</span><span style="color:#0000ff;">public</span> <span style="color:#0000ff;">void</span><span style="color:#000000;"> setAge(Integer age) {
    </span><span style="color:#0000ff;">this</span>.age =<span style="color:#000000;"> age;
}

}

复制代码

最后将DemoApplication.java修改一下,让其扫描dao层接口。

复制代码
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.support.SpringBootServletInitializer;

@SpringBootApplication
@MapperScan(“com.xdd.dao”)
public class DemoApplication extends SpringBootServletInitializer{
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class,args);
}
}

复制代码

自己添加controller和service

复制代码
import java.util.List;
import java.util.Map;

public interface UserService {
public User getUserById(int userId);

</span><span style="color:#0000ff;">boolean</span><span style="color:#000000;"> addUser(User record);

}

复制代码

 

复制代码
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;
import java.util.List;
import java.util.Map;

@Service(“userService”)
public class UserServiceImpl implements UserService {

@Resource
</span><span style="color:#0000ff;">private</span><span style="color:#000000;"> UserDao userDao;


</span><span style="color:#0000ff;">public</span> User getUserById(<span style="color:#0000ff;">int</span><span style="color:#000000;"> userId) {
    </span><span style="color:#0000ff;">return</span><span style="color:#000000;"> userDao.selectByPrimaryKey(userId);
}

</span><span style="color:#0000ff;">public</span> <span style="color:#0000ff;">boolean</span><span style="color:#000000;"> addUser(User record){
    </span><span style="color:#0000ff;">boolean</span> result = <span style="color:#0000ff;">false</span><span style="color:#000000;">;
    </span><span style="color:#0000ff;">try</span><span style="color:#000000;"> {
        userDao.insertSelective(record);
        result </span>= <span style="color:#0000ff;">true</span><span style="color:#000000;">;
    } </span><span style="color:#0000ff;">catch</span><span style="color:#000000;"> (Exception e) {
        e.printStackTrace();
    }

    </span><span style="color:#0000ff;">return</span><span style="color:#000000;"> result;
}

}

复制代码

 

复制代码
@Controller
@RequestMapping("/user")
public class UserController {
@Resource
private UserService userService;
@RequestMapping(</span>"/showUser"<span style="color:#000000;">)
@ResponseBody
</span><span style="color:#0000ff;">public</span><span style="color:#000000;"> User toIndex(HttpServletRequest request, Model model){
    </span><span style="color:#0000ff;">int</span> userId = Integer.parseInt(request.getParameter("id"<span style="color:#000000;">));
    User user </span>= <span style="color:#0000ff;">this</span><span style="color:#000000;">.userService.getUserById(userId);
    </span><span style="color:#0000ff;">return</span><span style="color:#000000;"> user;
}

}

复制代码

浏览器访问http://localhost:8080/user/showUser?id=1

以前找别人的教程的时候总是嫌弃人家写的不详细,真的自己写的时候发现很多细节我也详细介绍不到,比如yml文件使用,比如数据库,看来还是要求别人容易,要求自己难。



				<script>
					(function(){
						function setArticleH(btnReadmore,posi){
							var winH = $(window).height();
							var articleBox = $("div.article_content");
							var artH = articleBox.height();
							if(artH > winH*posi){
								articleBox.css({
									'height':winH*posi+'px',
									'overflow':'hidden'
								})
								btnReadmore.click(function(){
									if(typeof window.localStorage === "object" && typeof window.csdn.anonymousUserLimit === "object"){
										if(!window.csdn.anonymousUserLimit.judgment()){
											window.csdn.anonymousUserLimit.Jumplogin();
											return false;
										}else if(!currentUserName){
											window.csdn.anonymousUserLimit.updata();
										}
									}
									
									articleBox.removeAttr("style");
									$(this).parent().remove();
								})
							}else{
								btnReadmore.parent().remove();
							}
						}
						var btnReadmore = $("#btn-readmore");
						if(btnReadmore.length>0){
							if(currentUserName){
								setArticleH(btnReadmore,3);
							}else{
								setArticleH(btnReadmore,1.2);
							}
						}
					})()
				</script>
				</article>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值