我无法在我的eclipse 3.9.0RELEASE中运行我的Spring Boot应用程序。 如果使用以下命令在Prompt上启动它,它运行正常:
mvn spring-boot:run
但我更喜欢使用我的Spring Client而不是命令提示符, 当我尝试运行它时,执行:运行As-> Java应用程序或Spring Boor应用程序,然后我收到此错误:
ERROR StatusLogger找不到log4j2配置文件。使用默认配置:仅将错误记录到控制台。 线程“main”中的异常java.lang.IllegalStateException:无法从jar文件的清单中读取Class-Path属性:/ C:/Users/MyFirstName%20MySecondName/.m2/repository/org/codehaus/groovy/groovy/2.4。 7 /常规-2.4.7.jar 在org.springframework.boot.devtools.restart.ChangeableUrls.getUrlsFromClassPathOfJarManifestIfPossible(ChangeableUrls.java:100) 在org.springframework.boot.devtools.restart.ChangeableUrls.fromUrlClassLoader(ChangeableUrls.java:88) 在org.springframework.boot.devtools.restart.DefaultRestartInitializer.getUrls(DefaultRestartInitializer.java:91) 在org.springframework.boot.devtools.restart.DefaultRestartInitializer.getInitialUrls(DefaultRestartInitializer.java:54) 在org.springframework.boot.devtools.restart.Restarter。(Restarter.java:134) 在org.springframework.boot.devtools.restart.Restarter.initialize(Restarter.java:531) 在org.springframework.boot.devtools.restart.RestartApplicationListener.onApplicationStartedEvent(RestartApplicationListener.java:64) 在org.springframework.boot.devtools.restart.RestartApplicationListener.onApplicationEvent(RestartApplicationListener.java:46) 在org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:166) 在org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:121) 在org.springframework.boot.context.event.EventPublishingRunListener.publishEvent(EventPublishingRunListener.java:111) 在org.springframework.boot.context.event.EventPublishingRunListener.started(EventPublishingRunListener.java:60) 在org.springframework.boot.SpringApplicationRunListeners.started(SpringApplicationRunListeners.java:48) 在org.springframework.boot.SpringApplication.run(SpringApplication.java:302) 在org.springframework.boot.SpringApplication.run(SpringApplication.java:1185) 在org.springframework.boot.SpringApplication.run(SpringApplication.java:1174) 在com.myshop.demo.Application.main(Application.java:26)
在我看来,IDE无法成功创建 manifest.mf 文件(而maven插件完全可以完成)但我不知道如何解决这个问题。
我也尝试在我的项目pah中创建自己粘贴的文件:src / main / resources / META-INF / manifest.mf在jar中找到的文件,使用maven插件创建。
MANIFEST.MF:
Manifest-Version: 1.0
Implementation-Title: demo
Implementation-Version: 0.0.1-SNAPSHOT
Archiver-Version: Plexus Archiver
Built-By: MyFirstName MySecondName
Start-Class: com.myshop.demo.Application
Implementation-Vendor-Id: com.myshop
Spring-Boot-Version: 1.3.6.RELEASE
Created-By: Apache Maven
Build-Jdk: 1.8.0_121
Implementation-Vendor: Pivotal Software, Inc.
Main-Class: org.springframework.boot.loader.JarLauncher
但错误没有改变。 谢谢你的帮助。
的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>com.myshop</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.6.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- hot swapping, disable cache for template, enable live reload -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerVersion>1.8</compilerVersion>
<archive>
<manifest>
<mainClass>com.myshop.demo</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
Application.java:
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
答案 0 :(得分:8)
这是一个devtools启动异常,从pom.xml中删除该依赖,然后重新运行该应用程序。
答案 1 :(得分:0)
groovy-2.4.7.jar
文件已损坏。
尝试从互联网上手动下载文件并将其复制到C:/Users/MyFirstName%20MySecondName/.m2/repository/org/codehaus/groovy/groovy/2.4.7/groovy-2.4.7.jar
应该可以。