摘要: 如何实现 首先拦截器是属于web这块的,那我们需要引入springboot web模块,具体版本在parent中 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web< 阅读全文
posted @ 2021-08-23 17:03 New_HackerHK 阅读(533) 评论(1) 推荐(1) 编辑
摘要: 1、最基础注解(spring-context包下的org.springframework.stereotype) 1.1、@Controller @Service @Repository @Configuration @Component (1)解释 用于标注各个层级的注解,注入到spring容器管 阅读全文
posted @ 2021-08-23 11:37 New_HackerHK 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 添加注解@EnableScheduling开启定时器总开关 import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.annotation.EnableSche 阅读全文
posted @ 2021-08-23 10:42 New_HackerHK 阅读(693) 评论(0) 推荐(0) 编辑
摘要: 跨域 安装axios 使用npm进行安装 npm install --save axios 一、引入axios 添加src/main.js如下: // 设置反向代理,前端请求默认发送到http://localhost:8888/api var axios = require('axios') axi 阅读全文
posted @ 2021-08-23 10:34 New_HackerHK 阅读(226) 评论(0) 推荐(0) 编辑