使⽤SpringBoot整合ssm项⽬的实例详解
SpringBoot是什么?
Spring Boot 是由 Pivotal 团队提供的全新框架,其设计⽬的是⽤来简化新 Spring 应⽤的初始搭建以及开发过程。
Spring Boot 现在已经成为 Java 开发领域的⼀颗璀璨明珠,它本⾝是包容万象的,可以跟各种技术集成。成为 SpringBoot 全家桶,成为⼀把。
SpringBoot的特点
1.创建独⽴的 Spring 应⽤程序
2.嵌⼊的 Tomcat ,⽆需部署 WAR ⽂件
3.简化 Maven 配置
4.⾃动配置 Spring
5.提供⽣产就绪型功能,如指标,健康检查和外部配置
Spring 官⽅⽀持 SpringBoot 提供的项⽬框架⽣成页⾯
在eclipse上创建springboot⼯程
( jdk 版本必须 1.8 以上, springboot 基本上废除了 1.6 、 1.7)
eclipse版本也有要求,版本过低,创建的⼯程会报错或者可以使⽤springboot低版本。也可以使⽤STS或IDEA,版本⽀持较好,下⾯演⽰⽤的是eclipse
简单的使⽤springboot整合ssm
1. 创建 Maven ⼯程,创建 simple project ,类型为 jar
额外需要的 jar ,还得⾃⼰依赖,例如: mysql 驱动包,阿⾥的数据源 druid 包
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.4.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
&porting.outputEncoding>UTF-8</porting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId&batis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
创建 pojo 对象
public class User implements Serializable{
private static final long serialVersionUID = 1L;
private Integer id;
private String name;
@DateTimeFormat(pattern="yyyy-MM-dd")
private Date birthday;
private String address;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
@Override
public String toString() {
return "User [id=" + id + ", name=" + name + ", birthday=" + birthday + ", address=" + address + "]"; }
}
创建 l
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-////DTD Mapper 3.0//EN"
"/dtd/mybatis-3-mapper.dtd">
<!-- namespace命名空间,唯⼀特性 -->
<mapper namespace="com.lmq.mapper.UserMapper">
<select id="find" resultType="User">
select id,name,birthday,address from user
</select>
</mapper>
创建UserMapper 接⼝
public interface UserMapper {
//调⽤xml⽅式
public List<User> find();
//调⽤注解⽅式ssm框架简单吗
@Select("select * from user where id=#{id}")
public User get(@Param("id") Integer id);
}
创建UserService接⼝
public interface UserService {
public List<User> find();
public User get(Integer id);
}
创建UserServiceImpl接⼝实现类
@Service
public class UserServiceImpl implements UserService{
@Autowired
private UserMapper userMapper;
public List<User> find() {
return userMapper.find();
}
public User get(Integer id){
(id);
}
}
创建UserController类
使⽤ @RestController 替代 @Controller 和 @ResponseBody (返回 json 串)
@RestController
@RequestMapping(value = "/user")
public class UserController {
@Autowired
private UserService userService;
@RequestMapping("/find")
public List<User> find() {
return userService.find();
}
@RequestMapping("/get/{id}")
public User get(@PathVariable Integer id){
(id);
}
}
创建l
全局配置⽂件, yml 为新的配置⽂件⽅式,注意其中格式为空格,不能有 tab 。
配置端⼝,配置数据源,配置 mybatis 全局配置。
注意:如果端⼝,启动时⽇志显⽰ 8080 ,说明此⽂件未加载。检查原因⼀般是⽂件名或者路径不正确。server:
port: 8080
spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: sql.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/mybatisdb
username: root
password: root
mybatis:
typeAliasesPackage: com.lmq.pojo
mapperLocations: classpath:mappers/*.xml
logging:
level:
com.lmq.mapper: debug
创建RunApplication.java
@SpringBootApplication
@MapperScan("cn.lmq.mapper") //扫描Mybatis接⼝⽂件
public class RunApplication {
public static void main(String[] args) {
SpringApplication.run(RunApplication.class, args);
}
}
初步整合完毕,⽐三⼤框架ssm好⽤太多了
传统构建 Maven 项⽬, pom 中的依赖包繁多,升级⼀个 jar 版本时,会引发新的冲突,调试许久。⽽ SpringBoot 接管了 jar 的版本,它构建好⼀套,这套中各 jar 的版本已经测试好,开发者再⽆需去关注每个依赖包的版本及冲突问题,从⽽简化开发。
再者,它启动也⾮常快,直接运⾏⼀个类,使⽤ tomcat 的 maven 插件。开发调试时效率提⾼。
热部署⽀持
配置l
<!-- 热部署⽀持 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
总结
以上所述是⼩编给⼤家介绍的使⽤SpringBoot整合ssm项⽬的实例详解,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论