springBoot
Vransy.
这个作者很懒,什么都没留下…
展开
-
IDEA 设置自定义快捷补全 以mainBoot
public static void main(String[] args) { SpringApplication.run(PaymentMain8001.class, args); } 详细描述原创 2021-09-16 10:39:56 · 922 阅读 · 0 评论 -
SpringBoot 解决跨域问题的方法
关于跨域问题 网上一般都是两种解决方案 1.通过实现接口 WebMvcConfigurer (拦截器的方式实现) 2.通过CorsFilter 实现 package com.take.takeDemo.Common.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframewo原创 2021-02-05 16:37:43 · 78 阅读 · 0 评论 -
解决spring boot 热启动无效的问题
点开右上角 apply即可原创 2021-01-23 12:17:46 · 257 阅读 · 0 评论 -
[springBoot+Mybatis报错]解决:Invalid bound statement (not found): xxxxx
在写运行spring的时候总是出现 Invalid bound statement (not found): libaryapp.demo.dao.BooksDao.selectAll 这个问题始终无法解决 后面逐行去看配置文件 发现配置文件两个地方错误 application.propertis 修改前 mybatis.mapperLocations=classpath:mapper/*.xml 修改后 mybatis.mapperLocations=classpath*:libarya原创 2020-06-07 12:32:18 · 595 阅读 · 1 评论