我会发现一个奇怪的错误,我相信当我将网络应用部署到tomcat时,我相信class Loader问题。当我使用Jetty本地运行WebApp时,该错误不会出现。似乎我的.yml资源文件的输入流由于某种原因而被关闭。当我尝试将单个模块项目转换为多模块项目时,此错误首先出现。在此之前,它使用完全相同的代码在tomcat上工作正常:
Caused by: org.yaml.snakeyaml.error.YAMLException: java.io.IOException: Stream closed
at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:200)
at org.yaml.snakeyaml.reader.StreamReader.<init>(StreamReader.java:60)
at org.yaml.snakeyaml.Yaml.load(Yaml.java:412)
at com.config.ConfigProvider.<init>(ConfigProvider.java:20)
... 49 more
Caused by: java.io.IOException: Stream closed
at java.io.PushbackInputStream.ensureOpen(PushbackInputStream.java:57)
at java.io.PushbackInputStream.read(PushbackInputStream.java:149)
at org.yaml.snakeyaml.reader.UnicodeReader.init(UnicodeReader.java:90)
at org.yaml.snakeyaml.reader.UnicodeReader.read(UnicodeReader.java:122)
at java.io.Reader.read(Reader.java:123)
at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:184)
... 55 more
这是导致错误的行:
String s = ConfigProvider.getConfig().getString("test");
这是ConfigProvider
类。它基本上扫描了REGEX ^.*\.config\.yml$
的所有资源文件,将其转换为Map<String, Object>
,并将所有获得的Map<String, Object>
组合到单个Map<String, Object>
中:
1 public class ConfigProvider {
2 protected static final String CONFIG_PACKAGE = ConfigProvider.class.getPackage().getName();
3 protected static final Pattern CONFIG_PATH_REGEX = Pattern.compile("^.*\.config\.yml$");
4
5 private static final ConfigProvider INSTANCE = new ConfigProvider();
6 private Map<String, Object> configMap;
7
8 protected ConfigProvider() {
9 configMap = new HashMap<String, Object>();
10
11 Set<String> configPaths = new Reflections(CONFIG_PACKAGE,
12 new ResourcesScanner()).getResources(CONFIG_PATH_REGEX);
13
14 if (configPaths.isEmpty()) {
15 throw new RuntimeException("no config paths found");
16 }
17
18 for (String path : configPaths) {
19 InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream(path);
20 Map<String, Object> fullConfig = new Map<String, Object>((Map) new Yaml().load(inputStream));
21
22 try {
23 inputStream.close();
24 } catch (IOException e) {
25 throw new RuntimeException("error closing stream");
26 }
27
28 MapUtils.merge(configMap, fullConfig);
29 }
30 }
31
32 public static ConfigMap getConfig() {
33 return INSTANCE.configMap;
34 }
35 }
这是我的项目结构,标题为foo:
- Foo (this is a module)
- .idea
- application (this is a module)
- src
- main
- java
- resources
- application.config.yml
- webapp
- test
- pom.xml
- client (this is a module)
- src
- main
- java
- resources
- client.config.yml
- webapp
- test
- pom.xml
- pom.xml
ConfigProvider
是我从我的父pom文件(Foo/pom.xml
)获得的类。我从application
模块(Foo/application/target/application.war
)中包装WAR
文件,然后用Tomcat部署它。以前,我的项目是一个单个模块项目,只有一个Foo
模块与application
模块相同。然后,我添加了一个client
模块,并将项目转换为一个多模块项目,并且出现了问题。我认为这是因为由于多个模块,我的班级加载程序被搞砸了。我花了很多时间尝试调试此问题,但仍然没有到达任何地方。任何人都知道可能是什么原因,或者可以想到可能尝试的事情?
请让我知道您是否需要更多信息。
根据这篇文章,例外可能意味着根本找不到.yml
文件。由于您更改了项目结构,因此需要为新结构修改用于构建configPaths
的逻辑。您是否尝试登录configPaths
的内容以查看新结构的路径是否正确?
还确保.yml
文件包含在.war
文件中。一些构建系统的处理资源与Java类文件的处理方式不同。
bean类成员变量应与.yml文件键匹配,第二个选项可能是您可能会提供错误的文件路径。