专业网站建设品牌,十四年专业建站经验,服务6000+客户--广州京杭网络
免费热线:400-683-0016      微信咨询  |  联系我们

boot怎么操作数据库_数据库

当前位置:网站建设 > 技术支持
资料来源:网络整理       时间:2023/3/5 15:42:21       共计:3589 浏览

boot怎么操作数据库?

新建Spring Boot项目,依赖选择JPA(spring-boot-starter-data-jpa)和Web(spring-bootstarter-web)。配置基本属性 在application.properties里配置数据源和jpa的相关属性spring.datasource.driverClassName=com.mysql.jdbc.Driverspring.datasource.url=jdbc:mysql://localhost:3306/springbootspring.datasource.username=rootspring.datasource.password=123456spring.jpa.hibernate.ddl-auto=updatespring.jpa.show-sql=truespring.jackson.serialization.indent_output=true定义映射实体类定义Controller类@RestControllerpublic class PersonCtroller { @Autowired PersonServer personServer; @RequestMapping("/rollback"

) public Person rollback(Person person){ return personServer.savePersonWithRollBack(person); } @RequestMapping("/norollback"

) public Person noRollback(Person person){ return personServer.savePersonWithOutRollBack(person); }}定义数据访问层public interface PersonRepository extends JpaRepository<Person, Long> {}定义Server层@Servicepublic class PersonServerImp implements PersonServer { @Autowired PersonRepository personRepository; @Transactional(rollbackFor = {IllegalArgumentException.class}

) @Override public Person savePersonWithRollBack(Person person) { Person p = personRepository.save(person); if (p.getName().equals("xxx")){ throw new IllegalArgumentException("用户已存在,数据会回滚"); } return p; } }7浏览器访问

版权说明:
本网站凡注明“广州京杭 原创”的皆为本站原创文章,如需转载请注明出处!
本网转载皆注明出处,遵循行业规范,如发现作品内容版权或其它问题的,请与我们联系处理!
欢迎扫描右侧微信二维码与我们联系。
·上一条:mysql查询每门成绩,有哪些适合大学生学习的网站推荐_数据库 | ·下一条:要想提高访问数据库时的速度该升级哪些硬件_数据库

Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有    粤ICP备16019765号 

广州京杭网络科技有限公司 版权所有