
maven
增删改查科学家
执行力第一,然后遇到困难多想想
展开
-
Element 'configuration' cannot have character [children], because the type's content type is element
Element ‘configuration’ cannot have character [children], because the type’s content type is element-only.原因:配置文件中的beans节点下面只能是元素节点,不能有字符或者文本存在比如,多余的标点符号,点,也有可能是空格。如下报错:将图中的注释删除即可...原创 2019-07-29 10:25:21 · 3886 阅读 · 0 评论 -
maven 跳过单元测试 -DskipTests和 -maven.test.skip的区别
-DskipTests,不执行测试用例,但是编译测试并生成相应的class文件归至target/test-class下。如:mvn clean install -DskipTests-Dmaven.test.skip=true 不执行测试用例,也不编译测试用例如:mvnclean install -Dmaven.test.skip=true...原创 2019-08-12 12:04:37 · 191 阅读 · 0 评论