Spring JPetStore学习(一)配置JPetStore
http://quqtalk.javaeye.com/blog/362163
一、在Tomcat中部署Spring jpetstore
Spring samples中的jpetstore,基于iBATIS的jpetstore,数据库层使用iBATIS。在web层,提供了两种MVC可以选择,即Spring的MVC和Struts的MVC(1.1)。
测试环境:
JDK版本:1.5.0_12-b04
Tomcat版本:6.0.18
Spring版本:2.5.6
MySQL版本:5.1.32
(1)到Spring网站获取jpetstore例子的安装介质。到http://www.springsource.org/的download center,选择2.5.6-with-dependencies下载。
(2)解压下载的zip包,jpetstore例子在\spring-framework-2.5.6\samples\jpetstore目录。
(3)在MySQL库中创建jpetstore运行需要的数据库表,并导入一些初始数据。建表和导入数据的SQL语句在\spring-framework-2.5.6\samples\jpetstore\db\mysql目录。使用以下命令完成建表和数据导入,
Sql代码
- mysql -h 127.0.0.1 -u root -p
- CREATE DATABASE jpetstore;
- USE jpetstore;
- source \spring-framework-2.5.6\samples\jpetstore\db\mysql\jpetstore-mysql-schema.sql
- source \spring-framework-2.5.6\samples\jpetstore\db\mysql\jpetstore-mysql-dataload.sql
mysql -h 127.0.0.1 -u root -p CREATE DATABASE jpetstore; USE jpetstore; source \spring-framework-2.5.6\samples\jpetstore\db\mysql\jpetstore-mysql-schema.sql source \spring-framework-2.5.6\samples\jpetstore\db\mysql\jpetstore-mysql-dataload.sql
(3)修改数据库配置文件,\spring-framework-2.5.6\samples\jpetstore\war\WEB-INF目录,修改jdbc.properties,
Properties代码 jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://127.0.0.1:3306/jpetstore? jdbc.username=root jdbc.password= jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://127.0.0.1:3306/jpetstore? jdbc.username=root jdbc.password=
注意不要缺少?
(4)在\spring-framework-2.5.6\samples\jpetstore\war\WEB-INF目录web.xml中,
Xml代码 <servlet-mapping> <servlet-name>petstore</servlet-name> <!-- <servlet-name>action</servlet-name> --> <url-pattern>*.do</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>petstore</servlet-name> <!-- <servlet-name>action</servlet-name> --> <url-pattern>*.do</url-pattern> </servlet-mapping>
用来选择MVC是用Spring还是Struts,petstore代表使用Spring,action代表使用Struts。
(5)修改完配置文件后,\spring-framework-2.5.6\samples\jpetstore目录,运行warfile.bat,会在dist目录中创建jpetstore.war包,将此war包copy到Tomcat的webapps目录。
(6)启动Tomcat,在浏览器中输入http://127.0.0.1:8080/jpetstore,就可以看到jpetstore的主页。
二、在Myeclipse上导入jpetstore
新建一工程jpetstore, 然后用..\spring-jpetstore\samples\jpetstore下的src目录复盖你的eclipse工作空间下的\jpetstore下的src目录,然后再把..\spring-jpetstore\samples\jpetstore下的war目录下的全部内容拷到你的eclipse工作空间下的\jpetstore下的WebRoot目录下复盖WEB-INF.