JinSshe

 

2021年5月12日

vue跨域问题

摘要: 1. 在 config/index.js -> proxyTable 中设置添加代理 proxyTable: { '/api': { target: 'http://localhost:8080', changeOrigin: true, pathRewrite: { '^/api': '' } } 阅读全文

posted @ 2021-05-12 16:22 JinSshe 阅读(60) 评论(0) 推荐(0) 编辑

2021年4月20日

Spring @Scheduled 注解使用

摘要: 1.在类上加上 @EnableScheduling 2.在方法上加上 @Scheduled 并使用cron表达式 @Component @EnableScheduling public class QuartzManage { @Autowired SycQuartz SycQuartz; @Sch 阅读全文

posted @ 2021-04-20 17:49 JinSshe 阅读(47) 评论(0) 推荐(0) 编辑

导航