Differences in dynamic web projects on Eclipse Indigo Release 2

I just downloaded Eclipse Indigo Release 2 and found the difference in my Dynamic Web Project. My WebContent directory (or src / main / webapp with Maven) was usually shown at the root of the project in older versions (for example, in the source folder), but no longer in this new version. Is this a “fix” or something else? Is there a way to put it in "its place"?

Thank!

EDIT: Ok, found a file in .settings that has the following:

<wb-resource deploy-path="/" source-path="/WebContent" tag="defaultRootSource"/>

However, this does not show anything in Project Explorer, I think it is just intended for deployment. The question is still the same: have there been any changes in version 2? Can i return it?

+3
source share
3 answers

Deployed Resources -> webapp,

0

, . . ​​ -, - .

0

Not sure about the problem you mentioned, but you can convert your "src / main / webapp" to the source folder in eclipse on

Java Project Project Path →> Source Tab →> Add Folder

Then select the folder "src / main / webapp".

Your webapp folder will now appear as the source folder in eclipse.

0
source

All Articles