eclipse2021-12把src/main/java, src/test直接解析成包名

本文指导如何修复代码中src.main.java误解析为包名的问题,通过新建文件夹结构、删除原有src并演示正确组织。

先看下导入后的,很明显,src.main.java被解析成了包名
在这里插入图片描述
导致代码都报错了,修改方式如下
在这里插入图片描述
接着新增文件夹,如图所示:
在这里插入图片描述

在这里插入图片描述
最后删除 原来的src
在这里插入图片描述

PS D:\Hab_znaisc_v4_java\deepseekdemo-0704> mvn clean install -DskipTests [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encountered while building the effective model for com.huaanbao:framework:jar:1.0.0-SNAPSHOT [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.projectlombok:lombok:jar -> duplicate declaration of version 1.18.36 @ com.huaanbao:framework:${revision}, D:\Hab_znaisc_v4_java\deepseekdemo-0704\framework\pom.xml, line 290, column 21 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] [INFO] ------------------------------------------------------------------------ [INFO] Reactor Build Order: [INFO] [INFO] contract-intelligence [pom] [INFO] framework [jar] [INFO] admin [jar] [INFO] types [jar] [INFO] biz [jar] [INFO] start [jar] [INFO] common-dependencies [pom] [INFO] common [pom] [INFO] common-generator [jar] [INFO] [INFO] -----------------------< com.huaanbao:contract >------------------------ [INFO] Building contract-intelligence 1.0.0-SNAPSHOT [1/9] [INFO] from pom.xml [INFO] --------------------------------[ pom ]--------------------------------- [INFO] [INFO] --- clean:3.2.0:clean (default-clean) @ contract --- [INFO] [INFO] --- install:3.1.2:install (default-install) @ contract --- [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\pom.xml to D:\software\apache-maven-3.6.0\repository\com\huaanbao\contract\1.0.0-SNAPSHOT\contract-1.0.0-SNAPSHOT.pom [INFO] [INFO] -----------------------< com.huaanbao:framework >----------------------- [INFO] Building framework 1.0.0-SNAPSHOT [2/9] [INFO] from framework\pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [WARNING] 1 problem was encountered while building the effective model for org.javassist:javassist:jar:3.21.0-GA during dependency collection step for project (use -X to see details) [INFO] [INFO] --- clean:3.2.0:clean (default-clean) @ framework --- [INFO] Deleting D:\Hab_znaisc_v4_java\deepseekdemo-0704\framework\target [INFO] [INFO] --- resources:3.3.1:resources (default-resources) @ framework --- [INFO] Copying 43 resources from src\main\resources to target\classes [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\framework\src\main\resources\dev [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\framework\src\main\resources\dev [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\framework\src\main\resources\dev [INFO] [INFO] --- compiler:3.13.0:compile (default-compile) @ framework --- [INFO] Recompiling the module because of changed source code. [INFO] Compiling 361 source files with javac [debug target 17] to target\classes [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/helpdoc/domain/form/HelpDocUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/dict/domain/form/DictKeyUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/config/domain/ConfigUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/heartbeat/domain/HeartBeatRecordQueryForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/dict/domain/form/DictValueUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/securityprotect/domain/LoginFailQueryForm.java:[17,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/feedback/domain/FeedbackQueryForm.java:[17,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/file/domain/form/FileQueryForm.java:[19,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/loginlog/domain/LoginLogQueryForm.java:[14,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/helpdoc/domain/form/HelpDocQueryForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/codegenerator/domain/form/TableQueryForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/changelog/domain/form/ChangeLogQueryForm.java:[20,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/job/api/domain/SmartJobLogQueryForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/operatelog/domain/OperateLogQueryForm.java:[14,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/config/domain/ConfigQueryForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/helpdoc/domain/form/HelpDocCatalogUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/dict/domain/form/DictKeyQueryForm.java:[14,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/helpdoc/domain/form/HelpDocViewRecordQueryForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/message/domain/MessageQueryForm.java:[19,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/job/api/domain/SmartJobQueryForm.java:[17,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/dict/domain/form/DictValueQueryForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/datatracer/domain/form/DataTracerQueryForm.java:[18,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/serialnumber/domain/SerialNumberRecordQueryForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/config/RestTemplateConfig.java:[75,12] org.springframework.http.client 中的 org.springframework.http.client.OkHttp3ClientHttpRequestFactory 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/config/RestTemplateConfig.java:[75,12] org.springframework.http.client 中的 org.springframework.http.client.OkHttp3ClientHttpRequestFactory 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/config/RestTemplateConfig.java:[75,12] org.springframework.http.client 中的 org.springframework.http.client.OkHttp3ClientHttpRequestFactory 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/config/RestTemplateConfig.java:[75,12] org.springframework.http.client 中的 org.springframework.http.client.OkHttp3ClientHttpRequestFactory 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/config/RestTemplateConfig.java:[75,12] org.springframework.http.client 中的 org.springframework.http.client.OkHttp3ClientHttpRequestFactory 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/config/RestTemplateConfig.java:[76,20] org.springframework.http.client 中的 org.springframework.http.client.OkHttp3ClientHttpRequestFactory 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/module/support/serialnumber/service/impl/SerialNumberInternService.java:[53,9] 尝试在基于值的类的实例上同步 [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/common/util/SmartBeanUtil.java: 某些输入文件使用或覆盖了已过时的 API。 [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/common/util/SmartBeanUtil.java: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。 [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/common/util/ExcelUtil.java: 某些输入文件使用了未经检查或不安全的操作。 [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/framework/src/main/java/com/huaanbao/framework/common/util/ExcelUtil.java: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。 [INFO] [INFO] --- resources:3.3.1:testResources (default-testResources) @ framework --- [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\framework\src\test\resources [INFO] [INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ framework --- [INFO] No sources to compile [INFO] [INFO] --- surefire:3.2.5:test (default-test) @ framework --- [INFO] Tests are skipped. [INFO] [INFO] --- jar:3.4.1:jar (default-jar) @ framework --- [INFO] Building jar: D:\Hab_znaisc_v4_java\deepseekdemo-0704\framework\target\framework-dev-1.0.0-SNAPSHOT.jar [INFO] [INFO] --- install:3.1.2:install (default-install) @ framework --- [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\framework\pom.xml to D:\software\apache-maven-3.6.0\repository\com\huaanbao\framework\1.0.0-SNAPSHOT\framework-1.0.0-SNAPSHOT.pom [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\framework\target\framework-dev-1.0.0-SNAPSHOT.jar to D:\software\apache-maven-3.6.0\repository\com\huaanbao\framework\1.0.0-SNAPSHOT\framework-1.0.0-SNAPSHOT.jar [INFO] [INFO] -------------------------< com.huaanbao:admin >------------------------- [INFO] Building admin 1.0.0-SNAPSHOT [3/9] [INFO] from admin\pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- clean:3.2.0:clean (default-clean) @ admin --- [INFO] Deleting D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\target [INFO] [INFO] --- resources:3.3.1:resources (default-resources) @ admin --- [INFO] Copying 15 resources from src\main\resources to target\classes [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\src\main\resources\dev [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\src\main\resources\dev [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\src\main\resources\dev [INFO] [INFO] --- compiler:3.13.0:compile (default-compile) @ admin --- [INFO] Recompiling the module because of changed dependency. [INFO] Compiling 201 source files with javac [debug target 17] to target\classes [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/enterprise/domain/form/EnterpriseEmployeeQueryForm.java:[17,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/goods/domain/form/GoodsUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/department/domain/vo/DepartmentEmployeeTreeVO.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/notice/domain/vo/NoticeUpdateFormVO.java:[17,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/menu/domain/form/MenuAddForm.java:[13,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/bank/domain/BankQueryForm.java:[19,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/category/domain/form/CategoryUpdateForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/menu/domain/form/MenuUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/notice/domain/form/NoticeQueryForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/notice/domain/form/NoticeUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/notice/domain/form/NoticeViewRecordQueryForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/position/domain/form/PositionUpdateForm.java:[17,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/bank/domain/BankUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/login/domain/LoginForm.java:[20,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/invoice/domain/InvoiceUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/login/domain/LoginResultVO.java:[17,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/notice/domain/form/NoticeEmployeeQueryForm.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/employee/domain/form/EmployeeQueryForm.java:[20,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/role/domain/vo/RoleSelectedVO.java:[13,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/goods/domain/form/GoodsQueryForm.java:[20,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/employee/domain/form/EmployeeUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/department/domain/form/DepartmentUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/enterprise/domain/form/EnterpriseUpdateForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/invoice/domain/InvoiceQueryForm.java:[17,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/menu/domain/vo/MenuTreeVO.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/position/domain/form/PositionQueryForm.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/notice/domain/vo/NoticeEmployeeVO.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/role/domain/form/RoleQueryForm.java:[14,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/department/domain/vo/DepartmentTreeVO.java:[15,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/menu/domain/vo/MenuVO.java:[16,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/role/domain/form/RoleUpdateForm.java:[14,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/role/domain/form/RoleEmployeeQueryForm.java:[14,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/business/oa/enterprise/domain/form/EnterpriseQueryForm.java:[19,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/position/service/PositionService.java: D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\src\main\java\com\huaanbao\admin\module\system\position\service\PositionService.java使用或覆盖了已过时的 API。 [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/position/service/PositionService.java: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。 [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/datascope/service/DataScopeSqlConfigService.java: D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\src\main\java\com\huaanbao\admin\module\system\datascope\service\DataScopeSqlConfigService.java使用了未经检查或安全的操作。 [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/admin/src/main/java/com/huaanbao/admin/module/system/datascope/service/DataScopeSqlConfigService.java: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。 [INFO] [INFO] --- resources:3.3.1:testResources (default-testResources) @ admin --- [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\src\test\resources [INFO] [INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ admin --- [INFO] No sources to compile [INFO] [INFO] --- surefire:3.2.5:test (default-test) @ admin --- [INFO] Tests are skipped. [INFO] [INFO] --- jar:3.4.1:jar (default-jar) @ admin --- [INFO] Building jar: D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\target\admin-dev-1.0.0-SNAPSHOT.jar [INFO] [INFO] --- install:3.1.2:install (default-install) @ admin --- [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\pom.xml to D:\software\apache-maven-3.6.0\repository\com\huaanbao\admin\1.0.0-SNAPSHOT\admin-1.0.0-SNAPSHOT.pom [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\admin\target\admin-dev-1.0.0-SNAPSHOT.jar to D:\software\apache-maven-3.6.0\repository\com\huaanbao\admin\1.0.0-SNAPSHOT\admin-1.0.0-SNAPSHOT.jar [INFO] [INFO] -------------------------< com.huaanbao:types >------------------------- [INFO] Building types 1.0.0-SNAPSHOT [4/9] [INFO] from types\pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- clean:3.2.0:clean (default-clean) @ types --- [INFO] Deleting D:\Hab_znaisc_v4_java\deepseekdemo-0704\types\target [INFO] [INFO] --- resources:3.3.1:resources (default-resources) @ types --- [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\types\src\main\resources [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\types\src\main\resources\dev [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\types\src\main\resources\dev [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\types\src\main\resources\dev [INFO] [INFO] --- compiler:3.13.0:compile (default-compile) @ types --- [INFO] Recompiling the module because of changed source code. [INFO] Compiling 6 source files with javac [debug target 17] to target\classes [INFO] [INFO] --- resources:3.3.1:testResources (default-testResources) @ types --- [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\types\src\test\resources [INFO] [INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ types --- [INFO] No sources to compile [INFO] [INFO] --- surefire:3.2.5:test (default-test) @ types --- [INFO] Tests are skipped. [INFO] [INFO] --- jar:3.4.1:jar (default-jar) @ types --- [INFO] Building jar: D:\Hab_znaisc_v4_java\deepseekdemo-0704\types\target\types-dev-1.0.0-SNAPSHOT.jar [INFO] [INFO] --- install:3.1.2:install (default-install) @ types --- [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\types\pom.xml to D:\software\apache-maven-3.6.0\repository\com\huaanbao\types\1.0.0-SNAPSHOT\types-1.0.0-SNAPSHOT.pom [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\types\target\types-dev-1.0.0-SNAPSHOT.jar to D:\software\apache-maven-3.6.0\repository\com\huaanbao\types\1.0.0-SNAPSHOT\types-1.0.0-SNAPSHOT.jar [INFO] [INFO] --------------------------< com.huaanbao:biz >-------------------------- [INFO] Building biz 1.0.0-SNAPSHOT [5/9] [INFO] from biz\pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- clean:3.2.0:clean (default-clean) @ biz --- [INFO] Deleting D:\Hab_znaisc_v4_java\deepseekdemo-0704\biz\target [INFO] [INFO] --- resources:3.3.1:resources (default-resources) @ biz --- [INFO] Copying 16 resources from src\main\resources to target\classes [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\biz\src\main\resources\dev [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\biz\src\main\resources\dev [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\biz\src\main\resources\dev [INFO] [INFO] --- compiler:3.13.0:compile (default-compile) @ biz --- [INFO] Recompiling the module because of changed dependency. [INFO] Compiling 178 source files with javac [debug target 17] to target\classes [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/pojo/request/query/rule/TemplateNewRuleQry.java:[6,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/pojo/request/query/contractSubmit/ContractSubmitQry.java:[11,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/pojo/request/query/validate/ValidateQry.java:[7,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/pojo/response/contract/ContractInfoResponse.java:[10,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/pojo/request/query/rule/TemplateRuleQry.java:[7,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/pojo/request/query/contract/ContractQry.java:[13,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/pojo/request/query/template/ContractTemplateQry.java:[9,1] Generating equals/hashCode implementation but without a call to superclass, even though this class does not extend java.lang.Object. If this is intentional, add '@EqualsAndHashCode(callSuper=false)' to your type. [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/contractSubmit/ContractSubmitConvertor.java:[20,26] Unmapped target property: "provinceName". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/contractSubmit/ContractSubmitConvertor.java:[24,32] Unmapped target properties: "gmtCreate, brightStatus". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/template/TemplateRuleConvertor.java:[21,29] Unmapped target properties: "id, templateNo, templateName, pid, code, isDeleted, enable, createBy, updateBy, gmtCreate, gmtModified, ruleEnable". Mapping from Collection element "TemplateRuleAddCO templateRuleAddCO" to "AuditTemplateRule auditTemplateRule". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/template/TemplateRuleConvertor.java:[22,29] Unmapped target properties: "templateNo, templateName, pid, isDeleted, enable, createBy, updateBy, gmtCreate, gmtModified, ruleEnable". Mapping from Collection element "TemplateRuleModifyCO templateRuleModifyCO" to "AuditTemplateRule auditTemplateRule". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/contract/ContractTemplateRuleConvertor.java:[19,22] Unmapped target property: "creator". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/contract/ContractTemplateRuleConvertor.java:[28,22] Unmapped target property: "creator". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/contract/ContractTemplateRuleConvertor.java:[32,31] Unmapped target property: "creator". Mapping from Collection element "NewContractRule newContractRule" to "NewRulePageResponse newRulePageResponse". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/contract/ContractConvertor.java:[17,26] Unmapped target property: "provinceName". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/contract/ContractConvertor.java:[21,26] Unmapped target property: "provinceName". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/convertor/contract/ContractTemplateConvertor.java:[15,26] Unmapped target property: "creator". [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/controller/contractSubmit/ContractSubmitController.java:[66,55] java.lang.Long 中的 Long(java.lang.String) 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/controller/contractSubmit/ContractSubmitController.java:[74,61] java.lang.Long 中的 Long(java.lang.String) 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/repository/impl/AuditRecordRepositoryImpl.java:[128,67] java.lang.Long 中的 Long(java.lang.String) 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/repository/impl/AuditRecordRepositoryImpl.java:[142,85] java.lang.Long 中的 Long(java.lang.String) 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/repository/impl/ContractRepositoryImpl.java:[173,67] java.lang.Long 中的 Long(java.lang.String) 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/repository/impl/ContractRepositoryImpl.java:[187,85] java.lang.Long 中的 Long(java.lang.String) 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/service/impl/ContractAreaServiceImpl.java:[53,67] java.lang.Long 中的 Long(java.lang.String) 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/service/impl/ContractFacadeServiceImpl.java:[173,75] java.lang.Long 中的 Long(java.lang.String) 已过时, 且标记为待删除 [WARNING] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/service/impl/ContractNewAreaServiceImpl.java:[48,67] java.lang.Long 中的 Long(java.lang.String) 已过时, 且标记为待删除 [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/controller/ContractController.java: 某些输入文件使用了未经检查或不安全的操作。 [INFO] /D:/Hab_znaisc_v4_java/deepseekdemo-0704/biz/src/main/java/com/huaanbao/contract/controller/ContractController.java: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。 [INFO] [INFO] --- resources:3.3.1:testResources (default-testResources) @ biz --- [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\biz\src\test\resources [INFO] [INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ biz --- [INFO] No sources to compile [INFO] [INFO] --- surefire:3.2.5:test (default-test) @ biz --- [INFO] Tests are skipped. [INFO] [INFO] --- jar:3.4.1:jar (default-jar) @ biz --- [INFO] Building jar: D:\Hab_znaisc_v4_java\deepseekdemo-0704\biz\target\biz-dev-1.0.0-SNAPSHOT.jar [INFO] [INFO] --- install:3.1.2:install (default-install) @ biz --- [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\biz\pom.xml to D:\software\apache-maven-3.6.0\repository\com\huaanbao\biz\1.0.0-SNAPSHOT\biz-1.0.0-SNAPSHOT.pom [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\biz\target\biz-dev-1.0.0-SNAPSHOT.jar to D:\software\apache-maven-3.6.0\repository\com\huaanbao\biz\1.0.0-SNAPSHOT\biz-1.0.0-SNAPSHOT.jar [INFO] [INFO] -------------------------< com.huaanbao:start >------------------------- [INFO] Building start 1.0.0-SNAPSHOT [6/9] [INFO] from start\pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- clean:3.2.0:clean (default-clean) @ start --- [INFO] Deleting D:\Hab_znaisc_v4_java\deepseekdemo-0704\start\target [INFO] [INFO] --- resources:3.3.1:resources (default-resources) @ start --- [INFO] Copying 0 resource from src\main\resources to target\classes [INFO] Copying 4 resources from src\main\resources\dev to target\classes [INFO] Copying 2 resources from src\main\resources\dev to target\classes [INFO] Copying 4 resources from src\main\resources\dev to target\classes [INFO] The encoding used to copy filtered properties files have not been set. This means that the same encoding will be used to copy filtered properties files as when copying other filtered resources. This might not be what you want! Run your build with --debug to see which files might be affected. Read more at https://maven.apache.org/plugins/maven-resources-plugin/examples/filtering-properties-files.html [INFO] [INFO] --- compiler:3.13.0:compile (default-compile) @ start --- [INFO] Recompiling the module because of changed dependency. [INFO] Compiling 1 source file with javac [debug target 17] to target\classes [INFO] [INFO] --- resources:3.3.1:testResources (default-testResources) @ start --- [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\start\src\test\resources [INFO] [INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ start --- [INFO] No sources to compile [INFO] [INFO] --- surefire:3.2.5:test (default-test) @ start --- [INFO] Tests are skipped. [INFO] [INFO] --- jar:3.4.1:jar (default-jar) @ start --- [INFO] Building jar: D:\Hab_znaisc_v4_java\deepseekdemo-0704\start\target\start-dev-1.0.0-SNAPSHOT.jar [INFO] [INFO] --- spring-boot:3.4.3:repackage (default) @ start --- [INFO] Replacing main artifact D:\Hab_znaisc_v4_java\deepseekdemo-0704\start\target\start-dev-1.0.0-SNAPSHOT.jar with repackaged archive, adding nested dependencies in BOOT-INF/. [INFO] The original artifact has been renamed to D:\Hab_znaisc_v4_java\deepseekdemo-0704\start\target\start-dev-1.0.0-SNAPSHOT.jar.original [INFO] [INFO] --- install:3.1.2:install (default-install) @ start --- [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\start\pom.xml to D:\software\apache-maven-3.6.0\repository\com\huaanbao\start\1.0.0-SNAPSHOT\start-1.0.0-SNAPSHOT.pom [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\start\target\start-dev-1.0.0-SNAPSHOT.jar to D:\software\apache-maven-3.6.0\repository\com\huaanbao\start\1.0.0-SNAPSHOT\start-1.0.0-SNAPSHOT.jar [INFO] [INFO] ------------------< com.huaanbao:common-dependencies >------------------ [INFO] Building common-dependencies 1.0.0-SNAPSHOT [7/9] [INFO] from common\common-dependencies\pom.xml [INFO] --------------------------------[ pom ]--------------------------------- [INFO] [INFO] --- clean:3.2.0:clean (default-clean) @ common-dependencies --- [INFO] [INFO] --- install:3.1.2:install (default-install) @ common-dependencies --- [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\common\common-dependencies\pom.xml to D:\software\apache-maven-3.6.0\repository\com\huaanbao\common-dependencies\1.0.0-SNAPSHOT\common-dependencies-1.0.0-SNAPSHOT.pom [INFO] [INFO] ------------------------< com.huaanbao:common >------------------------- [INFO] Building common 1.0.0-SNAPSHOT [8/9] [INFO] from common\pom.xml [INFO] --------------------------------[ pom ]--------------------------------- [INFO] [INFO] --- clean:3.2.0:clean (default-clean) @ common --- [INFO] [INFO] --- install:3.1.2:install (default-install) @ common --- [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\common\pom.xml to D:\software\apache-maven-3.6.0\repository\com\huaanbao\common\1.0.0-SNAPSHOT\common-1.0.0-SNAPSHOT.pom [INFO] [INFO] -------------------< com.huaanbao:common-generator >-------------------- [INFO] Building common-generator 1.0.0-SNAPSHOT [9/9] [INFO] from common\common-generator\pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [WARNING] The artifact mysql:mysql-connector-java:jar:8.0.33 has been relocated to com.mysql:mysql-connector-j:jar:8.0.33: MySQL Connector/J artifacts moved to reverse-DNS compliant Maven 2+ coordinates. [INFO] [INFO] --- clean:3.2.0:clean (default-clean) @ common-generator --- [INFO] Deleting D:\Hab_znaisc_v4_java\deepseekdemo-0704\common\common-generator\target [INFO] [INFO] --- resources:3.3.1:resources (default-resources) @ common-generator --- [INFO] Copying 2 resources from src\main\resources to target\classes [INFO] [INFO] --- compiler:3.13.0:compile (default-compile) @ common-generator --- [INFO] Recompiling the module because of changed source code. [INFO] Compiling 17 source files with javac [debug target 17] to target\classes [INFO] [INFO] --- resources:3.3.1:testResources (default-testResources) @ common-generator --- [INFO] skip non existing resourceDirectory D:\Hab_znaisc_v4_java\deepseekdemo-0704\common\common-generator\src\test\resources [INFO] [INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ common-generator --- [INFO] No sources to compile [INFO] [INFO] --- surefire:3.2.5:test (default-test) @ common-generator --- [INFO] Tests are skipped. [INFO] [INFO] --- jar:3.4.1:jar (default-jar) @ common-generator --- [INFO] Building jar: D:\Hab_znaisc_v4_java\deepseekdemo-0704\common\common-generator\target\common-generator-dev-1.0.0-SNAPSHOT.jar [INFO] [INFO] --- install:3.1.2:install (default-install) @ common-generator --- [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\common\common-generator\pom.xml to D:\software\apache-maven-3.6.0\repository\com\huaanbao\common-generator\1.0.0-SNAPSHOT\common-generator-1.0.0-SNAPSHOT.pom [INFO] Installing D:\Hab_znaisc_v4_java\deepseekdemo-0704\common\common-generator\target\common-generator-dev-1.0.0-SNAPSHOT.jar to D:\software\apache-maven-3.6.0\repository\com\huaanbao\common-generator\1.0.0-SNAPSHOT\common-generator-1.0.0-SNAPSHOT.jar [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary for contract-intelligence 1.0.0-SNAPSHOT: [INFO] [INFO] contract-intelligence .............................. SUCCESS [ 0.378 s] [INFO] framework .......................................... SUCCESS [ 17.691 s] [INFO] admin .............................................. SUCCESS [ 6.627 s] [INFO] types .............................................. SUCCESS [ 0.722 s] [INFO] biz ................................................ SUCCESS [ 7.299 s] [INFO] start .............................................. SUCCESS [ 3.587 s] [INFO] common-dependencies ................................ SUCCESS [ 0.011 s] [INFO] common ............................................. SUCCESS [ 0.012 s] [INFO] common-generator ................................... SUCCESS [ 1.228 s] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 38.072 s [INFO] Finished at: 2025-08-01T16:17:39+08:00 [INFO] ------------------------------------------------------------------------ 解析上述运行结果
08-02
D:\biancheng\yf服务器代码\jdwlw>mvn clean package [INFO] Scanning for projects... [ERROR] [ERROR] Some problems were encountered while processing the POMs: [ERROR] Malformed POM D:\biancheng\yf服务器代码\jdwlw\pom.xml: expected START_TAG or END_TAG not TEXT (position: TEXT seen ...<dependency>\r\n\t\t\t\u6781<g... @122:7) @ D:\biancheng\yf服务器代码\jdwlw\pom.xml, line 122, column 7 [ERROR] 'dependencies.dependency.groupId' for cn.jpush.api极:jpush-client:jar with value 'cn.jpush.api极' does not match a valid id pattern. @ line 220, column 13 @ [ERROR] The build could not read 1 project -> [Help 1] [ERROR] [ERROR] The project jdwlw:jdwlw:0.0.1-SNAPSHOT (D:\biancheng\yf服务器代码\jdwlw\pom.xml) has 2 errors [ERROR] Malformed POM D:\biancheng\yf服务器代码\jdwlw\pom.xml: expected START_TAG or END_TAG not TEXT (position: TEXT seen ...<dependency>\r\n\t\t\t\u6781<g... @122:7) @ D:\biancheng\yf服务器代码\jdwlw\pom.xml, line 122, column 7 -> [Help 2] [ERROR] 'dependencies.dependency.groupId' for cn.jpush.api极:jpush-client:jar with value 'cn.jpush.api极' does not match a valid id pattern. @ line 220, column 13 [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException [ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/ModelParseException 解决上述报错 pom.xml:<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001极/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>jdwlw</groupId> <artifactId>jdwlw</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <name>maven Maven Webapp</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <!-- 添加仓库配置 --> <repositories> <repository> <id>central</id> <name>Maven Central</name> <url>https://repo.maven.apache.org/maven2</url> </repository> <repository> <id>aliyun</id> <name>Aliyun Maven</name> <url>https://maven.aliyun.com/repository/public</url> </repository> </repositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5极</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>4.1.6.RELEASE</version> </dependency> <!-- 修复 ksoap2 依赖 --> <dependency> <groupId>com.google.code.ksoap2</groupId> <artifactId>ksoap2-j2se-core</artifactId> <version>3.6.2</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <version>3.2.13.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>3.2.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc-portlet</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> 极<groupId>org.springframework</groupId> <artifactId>spring-websocket</artifactId> <version>4.1.6.RELEASE</version> </dependency> <dependency> <groupId>quartz</groupId> <artifactId>quartz</artifactId> <version>1.5.2</version> </dependency> <dependency> <groupId>org.apache.ibatis</groupId> <artifactId>ibatis-sqlmap</artifactId> <version>2.3.4.726</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-pool</groupId> <artifactId>commons-pool</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.35</version> </dependency> <dependency> <groupId>com.belerweb</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.0</version> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.4.1</version> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.5.0-b01</version> </dependency> <!-- 激光消息推送Starts --> <dependency> <groupId>cn.jpush.api极</groupId> <artifactId>jpush-client</artifactId> <version>3.1.3</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.5</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.5</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>17.0</version> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>mockwebserver</artifactId> <version>1.5.4</version> <scope>test</scope> </dependency> <!-- 激光消息推送END --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.11</version> </dependency> <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <version>2.10.0</version> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>com.lowagie</groupId> <artifactId>itext</artifactId> <version>2.1.7</version> </dependency> <!-- https://mvnrepository.com/artifact/commons-net/commons-net --> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <version>3.3</version> </dependency> <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 --> <dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <version>0.9.5.2</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.ws.commons.axiom/axiom-api --> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> <version>1.2.13</version> </dependency> <!-- https://mvnrepository.com/artifact/dom4j/dom4j --> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.axis/axis --> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>1.4</version> </dependency> <!-- https://mvnrepository.com/artifact/javax.xml.rpc/javax.xml.rpc-api --> <dependency> <groupId>javax.xml.rpc</groupId> <artifactId>javax.xml.rpc-api</artifactId> <version>1.1.1</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.axis2/axis2 --> <dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2</artifactId> <version>1.7.6</version> <type>pom</type> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.axis2/axis2-adb --> <dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-adb</artifactId> <version>1.7.6</version> </dependency> <!-- https://mvnrepository.com/artifact/soap/soap --> <dependency> <groupId>soap</groupId> <artifactId>soap</artifactId> <version>2.3</version> </dependency> <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient --> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.10.4</version> </dependency> <dependency> <groupId>org.eclipse.paho</groupId> <artifactId>org.eclipse.paho.client.mqttv3</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.7.2</version> </dependency> </dependencies> <build> <finalName>jdwlw</finalName> <plugins> <!-- 修复编译器插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <!-- 添加版本号 --> <configuration> <source>1.8</source> <target>1.8</target> <encoding>utf-8</encoding> <compilerArguments> <extdirs>${project.basedir}/src/main/webapp/WEB-INF/lib</extdirs> </compilerArguments> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> </resources> </build> </project>
06-23
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值