
springboot
十里青柚
.
展开
-
springboot-数据访问
文章目录整合测试整合第三方技术1.自定义2.找starter整合mybatis 整合测试 application.yaml spring: datasource: url: jdbc:mysql://localhost:3306/book username: root password: 12345 driver-class-name: com.mysql.jdbc.Driver Boot05WebAdminApplicationTests @Slf4j @Spring原创 2021-07-07 16:22:17 · 108 阅读 · 0 评论 -
springboot-web开发
文章目录抽取公共页面遍历数据拦截器文件上传 抽取公共页面 表单提交 <form class="form-signin" action="index.html" method="post" th:action="@{/login}"> IndexController //去登录页 @GetMapping(value = {"/","/login"}) public String loginPage(){ return "login"; }原创 2021-07-07 09:20:00 · 106 阅读 · 0 评论