springboot使用JPA实践使用

一开始使用自动生成实体类工具有JPA和mybatis-gernertor这两种方式来自动生成实体类的方式,今天先介绍第一种使用jpa 

自动生成实体类

项目中添加JPA

1.在所在项目下添加JPA,点击File->Project Sructure->Modules 点击红色框框中的加号,

2.点击idea界面左上角View->Tool Windows->Persistence

在IDEA中连接上数据库

1,日常我们工具都是使用的IDEA的方式,所以今天以IDEA为例说明。在IDEA中连接datebase,
IDEA中添加database
2.链接上数据库地址

3.选择连接上自己创建的数据库

利用IDEA生成Entity

1,点击刚刚新建的JPA选项

2.选择已经连接上的数据库地址,则会出现对应的地址值,Packge是对应包名,可以自己在项目中创建,点击对应表可以创建对应的表,

3.下面为创建成果状态

JPA实践使用

1.创建一个springbot项目。

        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter
        



        
            org.springframework.boot
            spring-boot-starter-data-jpa
            2.0.4.RELEASE
        

        
            mysql
            mysql-connector-java
            8.0.12
        

2.创建启动类

/**
 * @program: gitee-space
 * @Author felixwang
 * @Date on 2021/5/19  18:22
 * @Https https:felixwang.site
 * @QQ 2115376870
 * @Description
 */
@SpringBootApplication
public class AppAplication {
    public static void main(String[] args) {
        SpringApplication.run(AppAplication.class,args);
    }
}

3.创建一个Repository,即可像Mapper一样调用

4.下面是测试controller

/**
 * @program: gitee-space
 * @Author felixwang
 * @Date on 2021/5/20  17:08
 * @Https https:felixwang.site
 * @QQ 2115376870
 * @Description
 */
@RestController
public class TestOne {

    @Autowired
    private Company0EntityService company0EntityService;

    @GetMapping("/test1")
    public String testJpa(){
        return company0EntityService.getAll().toString();
    }

    @GetMapping("test2")
    public ResponseEntity test1(@NotBlank(message = "不能为空") @RequestParam Long redUserId){
        return  ResponseEntity.ok(company0EntityService.findNameByRefUserId(redUserId));
    }
}

以上为个人使用jpa,下次讲介绍mybatis-gerator的一些使用,文章如有写的不妥之处,望各位不吝赐教,谢谢

你可能感兴趣的:(springboot使用JPA实践使用)