可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
I use m2eclipse to import Maven Java projects in Eclipse.
It fails to recognize src/main/webapp
as a source directory.
Graphically in the package explorer (or when I look into Java-Build-Path in the project's properties),
this directory isn't in the list of sources folder (while src/main/java
or src/main/resources
do).
To access it, I have to look directly into the src/ directory, and start unfolding...
Not very convenient!
However, if I run maven install
, the resources are copied to the correct directory.
(example : src/main/webapp/index.jsp
to target/mywar/index.jsp
)
Questions
- Is this a correct behavior ? (I was thinking it could be treated as other resources ...)
- Could I fix it?
- I wonder if there are other drawbacks for this situation, that I would not be aware of right now?
回答1:
- Is this a correct behavior ? (I was thinking it could be treated as other resources ...)
- Could I fix it?
- I wonder if there are other drawbacks for this situation, that I would not be aware of right now?
- Yes, to me this is the correct behavior.
- It doesn't really make sense for src/main/webapp to be a source folder, it doesn't contain compilable source files.
- I don't know. I guess it depends on your expectations :)
That said, m2eclipse made a contribution that allows to make src/main/webapp
available at the top level with a specific "Web Resources" label, something like this:
This could be a solution for your concern (the not convenient folding).
回答2:
As far as maven is concerned, src/main/webapp
isn't a source folder in the sense that it's contents aren't compiled / copied to target/classes
, so from m2eclipse's point of view, this is correct behaviour. Is there a particular reason you need src/main/webapp to be marked as an Eclipse source folder?
回答3:
Instead of adding /src/main/webapp as a source folder in the java build path, add it as a folder to include in the deployment assembly:
MyProject -> properties -> Deployment Assembly: Add "/src/main/webapp" deploys to "/"
回答4:
Well you just have to mark the src/main/webapp as an Eclipse src folder:
right click webapp folder --> build path --> use as source folder
Don't think you can easily change this behavior without any ugly hacks, the src marking is just something Eclipse specific that it uses to configure its classpath etc.
回答5:
In my case, Eclipse failed to recognise src/main/webapp
as the Web Resources folder. I resolved it by:
- Deleting the project
- Restarting eclipse
- Taking a fresh update of the Maven project form the SVN.
回答6:
One solution is to exploit m2e support for build helper maven plugin and declare src/main/webapp as an additioanl resource path. This also makes eclipse copy saved resources to the build target folder structure.
<!-- help eclipse identify the webapp folder as a resource folder: -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>add-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>src/main/webapp</directory>
<targetPath>${project.build.directory}/${project.build.finalName}</targetPath>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
回答7:
I can think of a reason.
I'm using Maven for developing a GWT project in Eclipse. In my configuration, the src/main/webapp directory contains the HTML and CSS files that I have to refer to as part of my development effort, even though they're not "compilable" files.
Being able to get to them directly as opposed to diving into the src/ folder is a plus. And defining it in the POM so that it gets set up that way means I don't have to manually keep adding the folder every time I run eclipse:eclipse.
回答8:
To Nestor's point, no kidding. It's an end-to-end development environment and not just a compiler. It's intended as an interface for all source artifacts contributing to a build from JSP's to build configuration such as POM files. Why would eclipse even bother having XML and JSP editors if these aren't compile-able? --Which by the way, are super-useful.
The maven plugin for eclipse (or vice-versa) is terrific because it builds the .classpath, .project, and other configuration needed to immediately begin working with maven projects in eclipse. However, each time the eclipse config is generated (i.e. mvn eclipse:eclipse), unsupported directories must be added manually. That's a major suck.
The fact that these plugins neglect the ability to easily add new source folders viewable from within the IDE is a mystery to me. One maven/eclipse plugin project page even cites work-arounds for making these sources temporarily available by switching the project types and fooling the plugin--of course, you need to change it back immediately or corrupt the build.
Why don't they just create the ability to independently control the source declarations in .classpath???
回答9:
I found a whole different reason for the same problem I was facing - I would not see src/main/webapp in the package explorer.
Turned out it had nothing to do with either POM or with Eclipse (using SpringSource Suite 3.5.0) being able to load up maven project.
The problem was that inside my src/main/webapp/Scripts/ folder there were .git and .gitignore files. I suspect that may be Eclipse was not able to deal with file names begining with a "." in the webapp folder. I tested this theory across multiple projects and it seems to hold ground so far.
I hope this helps.