我使用jHipster生成了一个Spring Boot应用程序,添加了我之前项目(非jhipster项目)中的一些代码,并尝试使用IDEA运行它。首先我收到类似于this的错误消息,说“命令行太长了......”(我正在运行Windows 10 x64)。我点击了启用,但后来我收到了这样的错误。:
"C:\Program Files\Java\jdk1.8.0_144\bin\java" -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:51351,suspend=y,server=n -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=51350 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -Dfile.encoding=UTF-8 -classpath C:\Users\User\AppData\Local\Temp\classpath.jar com.test.pc.TestPartsComposerApp
Connected to the target VM, address: '127.0.0.1:51351', transport: 'socket'
The Class-Path manifest attribute in C:\Users\User\AppData\Local\Temp\classpath.jar referenced one or more files that do not exist: .... Extremely long list of jars
07:48:56.779 [main] DEBUG org.springframework.boot.devtools.settings.DevToolsSettings - Included patterns for restart : []
07:48:56.779 [main] DEBUG org.springframework.boot.devtools.settings.DevToolsSettings - Excluded patterns for restart : [/spring-boot-starter/target/classes/, /spring-boot-autoconfigure/target/classes/, /spring-boot-starter-[\w-]+/, /spring-boot/target/classes/, /spring-boot-actuator/target/classes/, /spring-boot-devtools/target/classes/]
07:48:56.779 [main] DEBUG org.springframework.boot.devtools.restart.ChangeableUrls - Matching URLs for reloading : []
07:48:57.570 [restartedMain] DEBUG org.springframework.boot.logging.ClasspathLoggingApplicationListener - Application failed to start with classpath: []
我尝试过后使用。/mvnw
:
The Class-Path manifest attribute in C:\Users\User\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2.3-1\jaxb-impl-2.2.3-1.jar referenced one or more files that do not exist: C:\Users\User\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2.3-1\jaxb-api.jar,C:\Users\User\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2.3-1\activation.jar,C:\Users\User\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2.3-1\jsr173_1.0_api.jar,C:\Users\User\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2.3-1\jaxb1-impl.jar
The Class-Path manifest attribute in C:\Users\User\.m2\repository\org\liquibase\liquibase-core\3.5.3\liquibase-core-3.5.3.jar referenced one or more files that do not exist: C:\Users\User\.m2\repository\org\liquibase\liquibase-core\3.5.3\lib\snakeyaml-1.13.jar
07:53:54.295 [main] DEBUG org.springframework.boot.devtools.settings.DevToolsSettings - Included patterns for restart : []
07:53:54.295 [main] DEBUG org.springframework.boot.devtools.settings.DevToolsSettings - Excluded patterns for restart : [/spring-boot-starter/target/classes/, /spring-boot-autoconfigure/target/classes/, /spring-boot-starter-[\w-]+/, /spring-boot/target/classes/, /spring-boot-actuator/target/classes/, /spring-boot-devtools/target/classes/]
07:53:54.295 [main] DEBUG org.springframework.boot.devtools.restart.ChangeableUrls - Matching URLs for reloading : [file:/C:/workspace/jh-fpc/TestPartsComposer/target/classes/]
07:53:55.295 [restartedMain] DEBUG org.springframework.boot.logging.ClasspathLoggingApplicationListener - Application failed to start with classpath: [file:/C:/workspace/jh-fpc/TestPartsComposer/target/classes/]
我发布了pom.xml
here。
我创建了一个全新的项目,并开始逐个添加maven依赖项,并在每一步之后运行项目。当我将 BOTH spring-batch和guava添加到pom时,会发生类路径问题。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-batch</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava-core.version}</version>
</dependency>
答案 0 :(得分:9)
我在jHipster应用程序中遇到了同样的问题并且出现了相同的错误消息,对我来说,根本原因是application-dev.yml中弹出邮件设置的格式化(缩进)错误。我只是从另一个项目中复制/粘贴设置,IntelliJ缩进它们的方式与原始代码中的有点不同,因此无法解析它们。
每次启动应用程序时都会出现这些“清单属性”,但至少对我来说,它们与真正的问题无关。希望这有助于找到事业的根源!欢呼声,
答案 1 :(得分:4)
此错误消息由输出 something like this
但它没有输出错误的真正原因。
因此,您应该在调试模式下启动应用程序,并在此行添加断点,然后您可以检查event.exception
,并找出发生的真正错误。
这个问题浪费了我30分钟......希望这个答案可以节省一点时间
答案 2 :(得分:2)
同一问题,我只是忘记在application.properties中设置<Image
source={{uri: product.image,cache: 'only-if-cached'}}
style={{ height: this.state.screenHeight , width: this.state.Calculatedheight }}
/>
而我有多个spring.profiles.active
答案 3 :(得分:0)
我在jhipster @4.10.2
和解决方案上遇到了同样的问题,
正如@ koni123正确地说的,这与application-dev.yml
有关,当我将该文件与以前的文件版本进行比较时,发现“ spring.jpa.hibernate.format_sql:true”给了我问题。一旦我从application-dev.yml中删除了它,就解决了我的问题。希望这会有所帮助。
答案 4 :(得分:0)
确保记录器中的CONSOLE附加程序处于活动状态。这将告诉您Eclipse控制台中真正的问题是什么
<root level="info">
<appender-ref ref="CONSOLE" />
<appender-ref ref="FILE" />
</root>
答案 5 :(得分:0)
我在JHipster(6.4.1)应用程序中遇到了同样的问题,在遵循@ koni123的建议后,我发现我不小心复制了logback-spring.xml
中的XML声明。
解决问题后,我可以看到清单警告仍在启动时打印,因此这只是一条红色鲱鱼。
答案 6 :(得分:0)
我在Spring中也遇到了这个问题,看来根本原因是SLF4J
依赖项冲突,这在我的pom中具有与Spring本地使用的版本不同的版本。
答案 7 :(得分:-2)
删除依赖项spring-boot-devtools