-
SpringBoot中使用拦截器
1、SpringBoot拦截器的使用
① 使用注解@Configuration配置拦截器
② 继承WebMvcConfigurerAdapter
③ 重写addInterceptors添加需要的拦截器地址
2、实现HandlerInterceptor的拦截器
查看全部 -
SpringBoot整合异步任务以及使用场景
1、springboot异步执行程序
①注解@EnableAsync开启异步,会自动扫描
② 定义@Component @Async作为组件被容器扫描执行
③异步任务调用
2、异步使用场景:发送短信、发送邮件、App消息推送、节省运维凌晨发布任务时间提供效率;
查看全部 -
返回数据常用方法
@JsonIgnore //直接忽略不显示 如密码等 @JsonFormat(pattern = "yyyy-MM-dd",locale = "zh",timezone = "GMT+8")//按照某种格式显示 @JsonInclude(JsonInclude.NON_NOLL)//当数据为空时忽略不显示 如密码等
查看全部 -
比JSP好在哪里查看全部
-
2、 SpringBoot整合thymeleaf
①添加依赖:
②添加配置:
③在resources/templates下创建Thymeleaf静态页面(html格式文件)
④添加Controller,在Controller中可以通过ModeMap传递数据
查看全部 -
SpringBoot整合模板引擎
1、 SpringBoot整合freemarker
① 添加依赖:
② 添加配置:
③ 在resources/templates下创建ftl格式文件
④ 添加Controller,在Controller中可以通过ModeMap传递数据
查看全部 -
rebuse
查看全部 -
1.将
generatorConfig.xml放在pom.xml同级目录下
2.在until目录下添加
GeneratorDisplay.java文件(调用generatorConfig.xml文件)
查看全部 -
配置文件:
查看全部 -
配置文件实体类
查看全部 -
配置文件依赖
查看全部 -
devtools 热部署
查看全部 -
@RestController 返回字符串
查看全部 -
@SpringBootApplication
public class A{
public static void main (String[] args) {
SpringApplication.run(A.class,args);
}
}
查看全部 -
ctrl + shift +O 去除没有用到的import包
查看全部
举报