|
A famous Java application server
A Hello World example with Jboss and Eclipse
Install and
Install
In eclipse create a new project by selecting new->Project->Web project->dynamic web project, say the project name is demo. The project should have a demo\src directory for source files, a demo\WebContent directory for jsp and html files.
Right click project name demo, select properties->packaging configurations. Select Standar-War.war. You need to manually add the items you want in the package. You need to fill out Prefix field: if it's .jsp page, then leave it blank; if it's .class file, use WEB-INF\classes. There is also an include and an exclude field: use \ \ \ .class if you want to include all .class files.
Add a few jsp ...[more] |
|