java
文章平均质量分 94
多多-江北残刀
这个作者很懒,什么都没留下…
展开
-
spring-boot-maven-plugin 打包分离依赖lib
1. 问题:spring-boot项目,默认生成的pom使用spring-boot-maven-plugin打包,会把所有依赖项都打进jar文件中,在调试阶段需要频繁传输jar包时很痛苦。2. 查找:上网搜索”maven 打包 依赖分离”等关键字,多数文章使用了maven-jar-plugin或其他插件,把spring-boot-maven-plugin替换掉了,例如:https://www.iteye.com/blog/icw-zy-2380977不说会不会有什么影响,单纯就觉得不完美 -- 自.原创 2021-02-19 12:11:51 · 5252 阅读 · 2 评论 -
pom文件报错 cannot have character [children]
pom文件报错 cannot have character [children]拷贝了一段maven dependency 代码,然后报错“cannot have character [children], because the type’s content type is element-only”,如图这是因为代码中有不可见字符,把空格全部删掉重新回车缩进就好了。...原创 2020-05-13 10:03:29 · 550 阅读 · 2 评论 -
在方法中声明 volatile变量报错:Modifier 'volatile' not allowed here
不知道是不是就我这么干了,网上居然搜不到随便写了段多线程的练习代码,想要使用volatile关键字,于是:...public static void main(String[] args) { volatile int count = 0; ...}IDE报错提示 Modifier ‘volatile’ not allowed here不解,查,得:Local variab...原创 2020-03-02 21:07:31 · 3756 阅读 · 2 评论 -
mybatis mapper.xml文件与接口放在同路径下报“Invalid bound statement"
mybatis的xml文件如果与接口放在一起报错如下:“org.springframework.security.authentication.InternalAuthenticationServiceException: Invalid bound statement (not found): com.duoduo.hr.mapper.HrMapper.<method name>”...原创 2020-02-23 15:52:39 · 433 阅读 · 0 评论 -
Spring security排错笔记
spring security 使用过程中,web.ignoring导致默认登录页404问题刚接触spring security,参考其他项目无意间写出了如下SecurityConfig类代码(当然,一开始没有这么简单,这是多次调试精简后能复现问题的代码):@Configurationpublic class SecurityConfig extends WebSecurityConfig...原创 2020-02-21 16:48:26 · 1944 阅读 · 1 评论 -
maven 兄弟module间依赖打包报错"Could not find artifact xxx"
项目结构:├── parentA ├── childA ├── pom.xml ├── src ├── childB ├── pom.xml ├── src ├── pom.xml其中childB依赖childA <dependencies> ... <dependency>...原创 2020-02-13 22:02:02 · 2188 阅读 · 1 评论 -
java 异常处理的自动资源管理
转自:http://www.oschina.net/question/12_10706--------------------------------------------------------------------------从 Java 7 build 105 版本开始,Java 7 的编译器和运行环境支持新的 try-with-resources 语句,称为 ARM 块转载 2017-08-25 10:42:52 · 605 阅读 · 0 评论