我正在寻找放置图像文件maven web项目的建议。 src / main / java下的一个类需要使用图像文件。我的问题是,如果我将图像文件放在src / main / webapp / images以及src / main / resources / Images下,那么应用程序服务器在运行时(myeclipse可以在哪里)找不到该路径,因为war存档没有指定的路径“SRC /主/ web应用/图像”。
我的问题是我应该在哪里放置我的项目可以找到它的图像文件,而不会提示任何错误或异常。
我正在使用
目前我确实有以下目录结构
项目目录结构
-src/main/java
-- classes
-src/main/resources
-- applicationContext.xml
-src/main/resources/Images
-- myImage.png (target image)
-src/test/java
-- test classes
-src/test/resources
(nothing)
-src
-- main
--- webapp
--WEB-INF
---faces-config.xml
---web.xml
--Images
--OtherImages
--myImage.png( second place for image)
--Css
--Meta-INF
--login.jspx
--jsfPageType1
--page1.jspx
--jsfPageType2
--page2.jspx
-target
-pom.xml
pom.xml的构建片段如下
<build>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
<outputDirectory>${basedir}/target/${project.artifactId}/classes</outputDirectory>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>${basedir}/src/test/resources</directory>
</testResource>
</testResources>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<optimize>true</optimize>
<useProjectReferences>true</useProjectReferences>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<warSourceDirectory>${basedir}/src/main/webapp</warSourceDirectory>
<webResources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<directory>${basedir}/src/main/resources/Images</directory>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
和MyProject.war的dir结构看起来像
MyProject.war
--Images
---OtherImages
--Css
--Meta-INF
--login.jspx
--jsfPageType1
--page1.jspx
--jsfPageType2
--page2.jspx
--WEB-INF
--classes
---applicationContext.xml
---com(classes package)
---Images
----myImage.png
--lib
--web.xml
--faces-config.xml
在MyClass中,我正在尝试访问图像
第一次尝试
private static String PATH_TITLE_IMAGE = "src/main/resources/Images/myImage.png";
com.itextpdf.text.Image bckGrndImage = com.itextpdf.text.Image.getInstance(PATH_TITLE_PAGE_IMAGE);
第二次尝试
private static String PATH_TITLE_IMAGE = "src/main/webapp/Images/myImage.png";
com.itextpdf.text.Image bckGrndImage = com.itextpdf.text.Image.getInstance(PATH_TITLE_PAGE_IMAGE);
as oers说我应该使用
MyClass.class.getResource("/images/image.jpg")
添加建议的解决方案后(但仍然无效)
private static String PATH_TITLE_IMAGE = "Images/myImage.png";
URL url = MyClass.class.getResource(PATH_TITLE_IMAGE);
com.itextpdf.text.Image bckGrndImage = com.itextpdf.text.Image.getInstance(url);
提前致谢
答案 0 :(得分:14)
所有Maven项目的默认资源目录是
src/main/resources
,最终会出现在目标/类中 WAR中的WEB-INF /类。目录结构将被保留 在这个过程中。
.
|-- pom.xml
`-- src
`-- main
|-- java
| `-- com
| `-- example
| `-- projects
| `-- SampleAction.java
|-- resources
| `-- images
| `-- sampleimage.jpg
`-- webapp
|-- WEB-INF
| `-- web.xml
|-- index.jsp
`-- jsp
`-- websource.jsp
建议的资源放置方式是src/main/resources
答案 1 :(得分:1)
您的问题似乎就是您阅读图片的方式。您不能(或不应该)从路径中读取图像。路径可能会在每个系统上发生变化。
您需要从类路径中读取图像,如:
MyClass.class.getResource("/images/image.jpg")
或
MyClass.class.getResourceAsStream("/images/image.jpg")
为此,图像文件夹需要位于类路径上。 Maven会将所有内容放在classpath中,即main / resources下。那就是你的图像文件夹所在的位置。
答案 2 :(得分:0)
您可以使用maven-resources-plugin
将内容复制到所需位置。
类似这样的事情
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory><!--your path here--></outputDirectory>
<resources>
<resource>
<directory><!--path-here--></directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
修改强> 根据您在下面的评论,我认为您需要的是一个属性文件,您可以在其中维护资源文件夹的路径。那条道路将是一条绝对的道路。根据您的部署,您可以在属性文件中更改该路径。