前言:
如今姐妹们对“spring 增删改查”大约比较关怀,各位老铁们都需要了解一些“spring 增删改查”的相关资讯。那么小编同时在网络上搜集了一些有关“spring 增删改查””的相关文章,希望小伙伴们能喜欢,兄弟们快快来学习一下吧!在上一节的yml文件中,我们设置 ddl-auto 为 create,这会导致每一次启动项目的时候,都会去数据库里面重新创建表。
这不是我们希望看到的,一般在项目开发中,我们更愿意把这个配置设置为update,这样的话,启动项目时它会去检测,如果表已经存在并且里面是有数据的,即不会去重新建表了。
server: port: 8088 context-path: /demospring: datasource: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/crud username: root password: 123456 jpa: hibernate: ddl-auto: update show-sql: true
我们需要使用spring-data-jpa来帮我们实现对用户表的增删改查,先去写一个接口,集成jpa:
package com.springboot.study.service;import org.springframework.data.jpa.repository.JpaRepository;import com.springboot.study.bean.User;public interface UserService extends JpaRepository<User, Integer>{}
我们只需要写上类名和主键的类型,即可。
其他什么都不用写,就OK啦。
编写Controller:
代码:
package com.springboot.study.controller;import java.util.List;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RestController;import com.springboot.study.bean.User;import com.springboot.study.service.UserService;@RestControllerpublic class UserController { @Autowired private UserService userService; /** * 获取所有的用户列表 * @return */ @RequestMapping("findAllUsers") public List<User> findAllUsers(){ return userService.findAll(); }}
因为逻辑比较简单,我就直接给出一个例子了,启动项目,看结果。。
这次启动时间稍微长了一点:
浏览器输入:
返回:
nice!
SpringBoot果然好用,一句sql都没写,甚至实现方法都没写,我们就完成了功能。
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #spring 增删改查