- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我构建了一个依赖于 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/
我想要做的是在每个框的蓝色标题之后获取红色文本。 看来我必须添加另一个 div?我已经添加并修改了 .card-indus img 的位置,但结果永远不是我想要的。 你知道为什么即使我将 positi
所以我一直在努力掌握绝对和相对定位的诀窍。关于这个主题有很多教程和问题,我已尽力理解它们。除了这一点,我大部分时间都很好。我正在创建一个页面,其中有较小的缩略图图像,用户可以选择单击并展开图像。为此,
下面是我正在处理的代码。如您所见,有一个“#parent”div 和一个“#child”div。 '#child' div 有一个未定义的高度,这是因为有时,'#child' 的高度小于或长于它的父级
我目前正在创建一个看起来有点像这样的固定 header 。 https://gyazo.com/e0bab8ba195e33110b19123c7fc3c568 Logo 始终位于左侧,小按钮始终位于
我怎样才能得到一个绝对定位的子 div,当它放在父 div 的范围之外时不显示? https://jsfiddle.net/knp9ebys/9/ .papa { background:red;
如果我对 CSS 显得相当“菜鸟”,我深表歉意。我一直在尝试设置以下... #0 { width: 100%; height: y; border: 1px solid black; } #
很长一段时间以来,我一直在摆弄一个特定的布局问题,但我显然采用了错误的方式。 以下是分解为基本组成部分的方法: SOME HEADER
我创建了几个虚拟 Controller ,我希望能够从当前的 http 请求中获取 url。 例如: http://www.site.com/app_1/default.aspx ===> http:
我创建了几个虚拟 Controller ,我希望能够从当前的 http 请求中获取 url。 例如: http://www.site.com/app_1/default.aspx ===> http:
我想知道是否有一个库在某处提供受新类型保护的 FilePath 类型。我找到了我想要的http://hackage.haskell.org/package/darcs-2.8.4/docs/src/D
如果我尝试使用以下方式连接到我的嵌入式数据库: private static String url = "jdbc:sqlite:~/hr4413/pkg/sqlite/Models_R_US.db"
所以我是 django 的新手,我一直在研究 PHP CodeIgniter,其中将绝对 URL 放入 href 我通过调用 URL 帮助程序使用了一个名为 base_url 的函数 它给出的输出类
我有一个小问题。 我在其他 div 中有一些图像元素的容器 div。像这样的东西: 我需要将容器垂直居中,但我不能使用顶部:-healfHeight; mar
我有一个带有 inline-block css 位置的列表(div)。里面有一个 relative 定位的 ul 是隐藏的。所以我试图通过添加一些类将这个 div 转换为 absolute 。通常,当
我正在尝试设置一个卡住列,唯一需要解决的问题是同一行上其他 td 的高度不会扩展以匹配绝对定位 td 的高度。由于卡住标题中的文本是任意的,它可以跨越多行。 如果它不是绝对定位的,那么这将迫使同一行中
这个问题在这里已经有了答案: Centering text vertically and horizontally in a div (1 个回答) 关闭 5 年前。
当它的位置绝对时,我试图使一个框宽度为 100%? 下图是我想要做的 https://i.imgur.com/qMaT361.gif float .box1 { position:re
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and t
我有 3 个 div,都是 positioned: absolute,但是我想要填充窗口宽度的 div 只会适应其中文本的长度。我希望黄色 div #help 填充窗口的其余部分。 我知道这听起来很菜
这个问题在这里已经有了答案: Retrieve the position (X,Y) of an HTML element (32 个答案) 关闭 8 年前。 有时候,当我请求某个对象的.posit
我是一名优秀的程序员,十分优秀!