spring web
今夕何夕%
靡不有初,鲜克有终!
展开
-
There is already ‘xxx‘ bean method 记一次hystrix使用报错
年假快过完了, 不知道吃吃喝喝的你, 是否还在学习呢, 最近hystrix在整合feign时候, 报了这样一个错误 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in class path resource [org/springframework/boot/autoconfigure/web/servl原创 2021-02-16 21:33:58 · 1128 阅读 · 7 评论 -
IDEA 错误: 找不到或无法加载主类 解决方法
在使用IDEA的过程中,如果你恰好又使用springboot, 在启动时候,你会经常遇到"错误,:找不到或者无法加载主类" 的情况, 我根据自己的情况, 总结了一下几个点: 错误:找不到或无法加载主类 1,删除target的文件,; 2,未能成功编译; 尝试:菜单—》Build—》Rebuild Prodject 3,缓存问题; 尝试:菜单—》File—》Invalidate Caches/Restart 选择Invalidate and Restart 或者 只是I原创 2021-02-15 23:12:19 · 891 阅读 · 0 评论 -
HttpServletRequest getRequestURL和getRequestURI
1.request.getRequestURL() 返回全路径 例如: request.getRequestURL()http://localhost:9002/webservlet/auth/verify 2.request.getRequestURI() 返回除去host(域名或者ip)部分的路径 例如:request.getRequestU...原创 2020-02-19 14:54:26 · 553 阅读 · 0 评论