开发者

first servlet/jsp application, just need some clarifications

开发者 https://www.devze.com 2022-12-16 20:56 出处:网络
I first tried the spring mvc tutorial using eclipse, but got a bit frustration and just did the first few steps using netbeans.

I first tried the spring mvc tutorial using eclipse, but got a bit frustration and just did the first few steps using netbeans.

Netbeans, using a java web template, creates folders like:

/webpages
/webpages/meta-inf/
/webpages/web-inf/
/webpages/*.jsp
/source packages
/source packages/xxxx/xxx.java
/test packages/
/libraries
/configuration files
/configuration files/manifest.mf, context.xml, web.xml

The spring tutorial suggests to create:

/appname/
/appname/src
/appname/war (jsp's go here)
/appname/war/web.xml
/appname/build.xml
/appname/build.properties
/appname/war/WEB-INF/appname-servlet.xml
/appname/src/appname/web/HelloController.java

Now my question is, if I modified my netbeans project to mirror this structure, will it break the automatic build开发者_如何转开发 that netbeans gives me?

I downloaded the full version of netbeans, so I'm not sure if Ant comes with it or not?

When using the IDE's build/run, I guess I am using the IDE's build engine, can I force it to use Ant somehow or its better just to use Ant at the command line?


Here's the Spring tutorial reworked for NetBeans.


One option, becaue you have Netbeans, is to do this using Maven. Maven is an external build system (and much more) that netbeans can use. Create a new project and select a Maven project. Then create a simple Java web application (or a spring application if you want to dive right in). The directory structure that is set up will be correct.


As an Eclipse user, I'm not really good with NetBeans. But I do know that the "internal build system" is based on Ant and a pretty elaborate project framework Ant file.

You could dig your way through the maze of files and targets and fix the problem manually, but my suggestion would be to adapt the Spring tutorial's names to the directory structure NetBeans gave you.

0

精彩评论

暂无评论...
验证码 换一张
取 消