
SpringBoot
后端框架的使用
付天天~
在校大学生
展开
-
Idea创建第一个Springboot项目 hello world
1.创建文件 创建项目完成后自动打开,会看见启动类和配置文件 接下来开始创建文件 创建完成后开始写我们的第一个程序,代码如下: package com.example.demo; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class He原创 2020-09-24 14:54:06 · 335 阅读 · 0 评论 -
SpringBoot整合Mabatis+Layui+json实现增删改查
导入Layui框架相关css js font 1.配置.properties文件 #thymeleaf 配置 spring.mvc.view.suffix=.html spring.thymeleaf.mode=HTML5 spring.thymeleaf.encoding=UTF-8 #spring.thymeleaf.prefix=classpath:/ spring.resources.static-locations=classpath:/templates/ #spring.thymeleaf..原创 2020-09-23 10:52:56 · 1930 阅读 · 4 评论