您的位置:首页 > 编程语言 > Java开发

How to setup a basic Struts project using Eclipse IDE

2008-05-01 06:20 387 查看
Struts.apache.org/" /> FAQsStruts.apache.org/faqs/kickstart.html" />Kickstart Struts.apache.org/faqs/newbie.html" />Newbie Struts.apache.org/faqs/helping.html" />How to Help Howto GuIDEsHow to setup a basic Struts project using Eclipse IDELegal Disclamer* DISCLAIMER - This simple How-to sHows you one of many ways to setup a working project usingthe Struts framework. This is mainly geared toward Struts users who are new to Eclipse, anddon't want to spend a lot of time figuring out the differences between their old IDE (if any)and this one.I will also apologize ahead of time for the formatting of this page.In this How-to, I will demonstrate (using Eclipse 2.0.1) How to setup, compile, run,and debug the Struts-example web application that is bundled with the distribution.Next, I will modify the code to pull some data from a MySql database using the popular relational mapping tool OJB. (This is actually quite simple) Let's get startedBefore we begin, you will need to create a directory somewhere to store your project.I typically use C:/personal/development/projects/(some project)Once that's done, extract the Struts-example.war to that directory (using your favorite zip utility)Delete the META-INF folder because this will be created during the build/jar/war process.Add a build.xml file to the project root. I use something like this:
<project name="Struts Example" default="main" basedir=".">

project>
Create a new project. New Java project Browse for the folder you created for your project. Eclipse will detect your source folders from any subdirectories under your project. In our case, this is where the src folder was placed. Default standard libs are automatically added depending on the type of project. Add the existing web app jars. Now we need to add a few jars from the file system. We always need this one (servlet.jar) Ahhhh...everything looks ok for now. You can always go back and modify these settings later. When everything settles down, you should see something like this (of course, it might look different depending on your installation/customization): Compilation warnings and errors are detected immediately. In this screenshot, I drill downinto the source folder, package, file, class, and double click on the method....which brings up the source editor. I hover the mouse over the offending warning to see a description of what's wrong. I changed ApplicationConfig to ModuleConfig, then saved and now I see new errors.You can right click and import ModuleConfig right from the error. A quick look at the import section. Right click, Source, Organize Imports Ahhhh...better From the Package Explorer, right click your build.xml and run Ant: Is this cool or what? Uh Oh! Quick look at what jars are being used to process my build. I simply removed all the existing jars from the IDE's Ant configuration andadded all from my own installation. Can't forget that last one Everything went ok (for me) Time to test-drive Copyright (c) 2000-2005, The Apache Software Foundation - Struts/Strutsdoccomments" />Comments?
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: