数据库使用MySQL,ORM使用spring data jpa
1 因此需要再pom.xml文件中添加相应jar包。如下:
<!-- 引入jap -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- 引入mysql -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
2 在application.properties文件中添加配置。如下:
spring.datasource.url=jdbc:mysql://localhost:3306/cfj_test?useUnicode=true&characterEncoding=utf-8
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.jpa.properties.hibernate.hbm2ddl.auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.show-sql= true
注:
其实这个hibernate.hbm2ddl.auto参数的作用主要用于:自动创建|更新|验证数据库表结构,有四个值:
create: 每次加载hibernate时都会删除上一次的生成的表,然后根据你的model类再重新来生成新表,哪怕两次没有任何改变也要这样执行,这就是导致数据库表数据丢失的一个重要原因。
create-drop :每次加载hibernate时根据model类生成表,但是sessionFactory一关闭,表就自动删除。
update:最常用的属性,第一次加载hibernate时根据model类会自动建立起表的结构(前提是先建立好数据库),以后加载hibernate时根据 model类自动更新表结构,即使表结构改变了但表中的行仍然存在不会删除以前的行。要注意的是当部署到服务器后,表结构是不会被马上建立起来的,是要等 应用第一次运行起来后才会。
validate :每次加载hibernate时,验证创建数据库表结构,只会和数据库中的表进行比较,不会创建新表,但是会插入新值。
dialect 主要是指定生成表名的存储引擎为InneoDB
show-sql 是否打印出自动生产的SQL,方便调试的时候查看
3 添加实体类
package com.cfj.testboot.domain; import java.io.Serializable; import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id; @Entity
public class UserDo implements Serializable{ private static final long serialVersionUID = 1L; @Id
@GeneratedValue
private Integer id;
private String userName;
private String passWord; public UserDo() { } public UserDo(String userName,String passWord) {
this.userName = userName;
this.passWord = passWord; } public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
} 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;
} @Override
public String toString() {
return "UserDo [id=" + id + ", userName=" + userName + ", passWord=" + passWord + "]";
} }
4 创建Dao(JPA 一般叫做Repository 比如UserRepository)
几乎不用写实现类
继承对应的jpa 接口即可。比如继承:CrudRepository或者PagingAndSortingRepository或者JpaRepository或者JpaSpecificationExecutor
package com.cfj.testboot.domain; import org.springframework.data.jpa.repository.JpaRepository; public interface UserRepository extends JpaRepository<UserDo, Integer>{ UserDo findByUserName(String userName);//按照名字查询 }
5 测试
需要在pom.xml增加jar包配置。如下:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
测试类如下:
package com.cfj.testboot.domain; import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
public class UserRepositoryTests { @Autowired
private UserRepository userRepository; @Test
public void test() throws Exception { userRepository.save(new UserDo("aa1", "11"));
userRepository.save(new UserDo("bb2", "22")); } @Test
public void testFind() throws Exception { UserDo u = userRepository.findByUserName("aa1");
System.out.println(u.getUserName()); } }
参考:http://www.ityouknow.com/springboot/2016/02/03/spring-boot-web.html