输入:mvn dependency:sources
mvn -U idea:idea
二选一,执行命令,就可以重新下载依赖所需要的jar包。
参考自:链接
{
path: '/',
name: 'Layout',
component: Layout,
children: [
{
path: 'home',
name: 'Home',
component: () => import('../views/HomeView')
}
]
}
10. 后台警告:Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘GET’ not supported]
前端报错:Status Code: 405 Method Not Allowed.errAxiosError: Request failed with status code 405
没有解决:有说将后端接口上的注解@GetMapping 换为 @RequestMapping,前端以post方式请求。但我的还是有问题,有报错但可以正常运行。。。
11. IllegalArgumentException: Could not resolve placeholder ‘server.port’ in val
解决:yml 配置要用冒号 “ : ” ,不能用点 “ . ”
// 在 .yml 配置文件里 yml 要用“:”!!
@Value("${server:port}")
private String port;
@Value("${file:ip}")
private String ip;```
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)