maven中多个源文件夹 eclipse报错
初学maven,试图使用m2eclipse来重构原来在eclipse已经建立的web项目,现在遇到了一些问题,希望各位能够帮忙。
首先,我原来的包结构如下图所示:
可以看到有一个test源文件夹和多个src源文件夹,现在遇到的第一个问题是maven默认使用的是/src/main/java这个路径作为源文件夹路径。而如果我们需要建立多个源文件夹,如下图:
我搜索了部分网上的资料得知可以使用
build-helper-maven-plugin
来进行多个源文件夹的添加工作,并搜索到了如下代码内容:
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/chat/java</source> <source>src/request/java</source> <source>src/notification/java</source> <source>src/friend/java</source> <source>src/user/java</source> <source>src/profile/java</source> <source>src/main/webapp</source> </sources> </configuration> </execution> </executions> </plugin>
经过这个操作之后,貌似可以让maven接受多个源文件夹了,但是建立之后我的项目在eclipse中报错了,
。经过查看在
problems
中显示的错误为
The project cannot be built until build path errors are resolved
。
我检查了输出路径,为target/classes应该是正确的。同时dependency也没有报错,请问问题出在哪里?
另外,我现在需要将我的web项目跑起来,以前的方法是直接运行在eclipse中的tomcat上,现在使用了maven之后,是否不能直接使用tomcat了?需要转而使用jetty还是需要做什么样的方法变更,谢谢各位大虾了~!~~~
Answers
<source>
${basedir}/src/request/java
</source>
<source>
${basedir}/src/notification/java
</source>
<source>
${basedir}/src/friend/java
</source>
<source>
${basedir}/src/user/java
</source>
<source>
${basedir}/src/profile/java
</source>
<source>
${basedir}/src/main/webapp
</source>