gpt4 book ai didi

java - 当配置位置是 Windows 绝对路径时,Spring Boot 独立 jar 崩溃

转载 作者:太空宇宙 更新时间:2023-11-04 06:59:20 24 4
gpt4 key购买 nike

我构建了一个依赖于 Spring Boot 的应用程序。当我们即将部署它时,我开始在 Eclipse 和 Gradle 之外测试该应用程序。这就是我们在 Spring Boot 的早期生命周期中遇到的崩溃问题。该应用程序在 Eclipse 中运行良好,并使用 gradlew run 。但是,它有 java -jar <App>.jar 的问题。 .

以下是我遇到的异常。

java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:53)
at java.lang.Thread.run(Thread.java:744)
Caused by: java.lang.IllegalArgumentException: name
at sun.misc.URLClassPath$Loader.findResource(URLClassPath.java:494)
at sun.misc.URLClassPath.findResource(URLClassPath.java:176)
at java.net.URLClassLoader$2.run(URLClassLoader.java:551)
at java.net.URLClassLoader$2.run(URLClassLoader.java:549)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findResource(URLClassLoader.java:548)
at org.springframework.boot.loader.LaunchedURLClassLoader.getResource(LaunchedURLClassLoader.java:63)
at org.springframework.core.io.ClassPathResource.exists(ClassPathResource.java:138)
at org.springframework.boot.env.PropertySourcesLoader.isFile(PropertySourcesLoader.java:88)
at org.springframework.boot.env.PropertySourcesLoader.load(PropertySourcesLoader.java:74)
at org.springframework.boot.context.config.ConfigFileApplicationListener$Loader.load(ConfigFileApplicationListener.java:316)
at org.springframework.boot.context.config.ConfigFileApplicationListener$Loader.load(ConfigFileApplicationListener.java:295)
at org.springframework.boot.context.config.ConfigFileApplicationListener$Loader.load(ConfigFileApplicationListener.java:283)
at org.springframework.boot.context.config.ConfigFileApplicationListener.addProperySources(ConfigFileApplicationListener.java:153)
at org.springframework.boot.context.config.ConfigFileApplicationListener.onApplicationEnvironmentPreparedEvent(ConfigFileApplicationListener.java:135)
at org.springframework.boot.context.config.ConfigFileApplicationListener.onApplicationEnvironmentPreparedEvent(ConfigFileApplicationListener.java:128)
at org.springframework.boot.context.config.ConfigFileApplicationListener.onApplicationEvent(ConfigFileApplicationListener.java:117)
at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:98)
at org.springframework.boot.context.event.EventPublishingRunListener.publishEvent(EventPublishingRunListener.java:92)
at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:58)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:275)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:880)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:869)
at hello.SampleController.main(SampleController.java:18)
... 6 more

我们正在使用 Spring Boot 1.0.0.RC4。为了隔离问题,我复制了教程 ( http://projects.spring.io/spring-boot/#quick-start ) 中的代码并启动了一个新的 Eclipse Gradle 项目。只有一个类文件。这是非常标准的,除了我替换了 @Controller@RestController并删除 @ResponseBody 。因为这就是我的应用程序使用的。

Hello.java。

package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@EnableAutoConfiguration
public class SampleController {

@RequestMapping("/")
String home() {
return "Hello World!";
}

public static void main(String[] args) throws Exception {
SpringApplication.run(SampleController.class, args);
}
}

我有一个相当标准的build.gradle文件。

apply plugin: 'java'
apply plugin: 'eclipse'

buildscript {
repositories {
maven { url 'http://repo.spring.io/libs-snapshot' }
mavenLocal()
}
dependencies { classpath('org.springframework.boot:spring-boot-gradle-plugin:1.0.0.RC4') }
}

apply plugin: 'spring-boot'

repositories {
mavenCentral()
maven { url 'http://repo.spring.io/milestone' }
maven { url "http://repo.spring.io/libs-snapshot" }
}

dependencies { compile 'org.springframework.boot:spring-boot-starter-web:1.0.0.RC4' }

task wrapper(type: Wrapper) { gradleVersion = '1.11' }

通过这个测试 hello 应用程序,我做了 gradlew clean build然后尝试java -jar Hello.jar 。想象一下当我收到与上面相同的异常时我的惊讶。也许我还遗漏了一些东西,但这个结果似乎表明 Spring Boot 可能存在问题?

我非常感谢一个解决方案......任何解决方案(即使它是一个肮脏的解决方法)。

编辑1:

根据要求,我正在测试独立 jar 的机器运行在 Windows (8.1) 上。

java version "1.7.0_51"
Java(TM) SE Runtime Environment (build 1.7.0_51-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.51-b03, mixed mode)

编辑2:

根据要求,我还测试了 spring-boot-sample-web-ui 。仍然出现同样的异常。

编辑3:向@DaveSyer致敬

我可能发现了一个潜在的原因。环境变量SPRING_CONFIG_LOCATION似乎导致了异常。不设置时,测试Hello应用程序和 spring-boot-sample-web-ui应用程序按预期工作。

编辑4:

对于其他感兴趣的人,我已将测试应用程序上传到 GitHub ( https://github.com/ChrisZhong/spring-boot-jar-sample )

最佳答案

我知道这个问题已经很老了,但如果有人在 Windows 上的 SPRING_CONFIG_LOCATION 设置中遇到同样的问题:

要设置 application.properties(或任何其他名称)的路径,您应该使用此命令

set SPRING_CONFIG_LOCATION=file:C:/path/application.properties

(注意“file:”后面缺少的双斜杠)您还可以将此路径设置到 Windows 环境变量中。此设置已在 Spring boot 1.1.2 上成功测试。它也可能适用于旧版本。

如果你改写

set SPRING_CONFIG_LOCATION=C:/path/application.properties

Spring boot 不会查找属性文件并忽略它的设置。

或者如果你写

set SPRING_CONFIG_LOCATION=file://C:/path/application.properties

Spring boot 将为驱动器号“C”抛出 UnknownHostException。

关于java - 当配置位置是 Windows 绝对路径时,Spring Boot 独立 jar 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22337323/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com