我知道,这里已经问过类似的问题,但似乎没有一个适合我的确切问题。我有以下(部分)目录结构:
src
|__view
|__TweetView.java
|__TweetView.html
在 TweetView.java 中,我试图获取 TweetView.html 的资源 URL,如下所示:
String htmlDocName = "TweetView.html";
Class thisClass = this.getClass();
URL htmlResourceURL = thisClass.getResource(htmlDocName);
这在 Eclipse (Neon.2) 中运行良好,但在 IntelliJ (2017.2.3)htmlResourceURL
中始终为null
. 我知道 HTML 文件的位置可能不理想(应该放在资源文件夹中),但由于各种原因,我现在不应该更改它。
我观察到 src 文件夹在 IntelliJ 的项目结构中被标记为“Sources”文件夹,并且它的子文件夹没有明确标记。项目设置不会在 Eclipse 和 IntelliJ 之间共享,因为该项目使用 Maven。注意:问题是关于直接从各自的 IDE 中将项目作为 Java 应用程序运行,而不是 JAR/WAR 导出。
我看到 IntelliJ 有这些“资源模式”,它们定义了哪些文件类型应该被视为资源,但我无法通过添加 .html 来使其工作,无论是否使用通配符(根据 IntelliJ 网站,.html无论如何,默认情况下被视为资源)。
有谁知道问题可能是什么?由于它在 Eclipse 中工作,我理想地希望通过 IntelliJ 中的配置来解决问题,而不是更改代码。
编辑: 这是我的 POM:
<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>demo</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/view</directory>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>hbc-twitter4j</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.4.0.M1</version>
</dependency>
</dependencies>