web框架:Spring : Spring应用 « Spring « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » Spring » Spring应用屏幕截图 
web框架:Spring

/*
Beginning JavaServer Pages
Vivek Chopra, Jon Eaves, Rupert Jones, Sing Li, John T. Bell
ISBN: 0-7645-7485-X

*/

Chapter 18 - Examples Readme.
=================================================================
These instructions assume you have set up Ant and Tomcat on your computer.

1. Extract the contents of this zip file into a directory on your computer, for example
C:\ch18-spring-base.

2. Modify the C:\ch18-spring-base\build.xml file as follows:
  a. Modify the value of the catalina.home property to reflect the location of Tomcat on your computer.
  b. Modify the value of the manager.url property to reflect the URL of the manager application the Tomcat instance you will be deploying this project too.
  c. Modify the values of the manager.username and manager.password properties to reflect the correct values for your  instance of Tomcat.
  
3. The build.xml file contains references to resources you need to have installed on your computer. The
script stores a reference to the location where you installed these resources. Sometimes the directory
structure of an installation can change from version to version. If you choose to use a different version
to that recommended in the book, please ensure that the build.xml file looks in the appropriate directory
for the resources it needs. For instance the script stores the location of the Jakarta Taglibs on your
computer with: 

<property name="jstl.home" value="c:/java/tools/jakarta-taglibs"/>

And further on in the script it uses this location to find the resources it needs:

<property name="jstl.jar" value="${jstl.home}/standard/lib/jstl.jar"/>
<property name="standard.jar" value="${jstl.home}/standard/lib/standard.jar"/>

The second set of properties assumes the directory structure of where the resources are located. If youse a different version than what is recommended this location may be different.

You will need to modify the build.xml to suit your computer in the following ways:

  a. Change the value of the jstl.home property to reflect the location of Jakarta Taglibs.
  b. change the value of the spring.home property to reflect the location of the Spring Framework 1.0.

3. Start Tomcat.

4. Open a DOS prompt or Unix command shell to the directory containing the build.xml file (C:\ch18-spring-base\).

5. Type the following at the prompt: 
  
  ant install

6. The application should now be available for browsing at http://localhost:8080/spring-base


           
       
BeginningJavaServerPages-ch18.zip( 417 k)
Related examples in the same category
1. Spring minimal web application
2. Spring Tiles Example
3. Spring图像数据库示例应用程序
4. Spring国家示例应用程序
5. Spring PetClinic示例应用程序
6. Spring JPetStore示例应用程序
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.