`

spring JpetStore学习笔记

阅读更多
首先看看工程的web.xml文件

指定web应用的根, 为WebAppRootListener,Log4jConfigListener使用
    <context-param>
        <param-name>webAppRootKey</param-name>
        <param-value>petstore.root</param-value>
    </context-param>

指定log4j配置文件位置
    <context-param>
        <param-name>log4jConfigLocation</param-name>
        <param-value>/WEB-INF/log4j.properties</param-value>
    </context-param>

配置文件,-local为后缀的是单数据库,-jta的为多数据库时
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/dataAccessContext-local.xml  /WEB-INF/applicationContext.xml
        </param-value>
        <!--
        <param-value>
            /WEB-INF/dataAccessContext-jta.xml  /WEB-INF/applicationContext.xml
        </param-value>
        -->
    </context-param>

启动时ContextLoaderServlet会装入上述配置文件
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

spring MVC servlet 使用这个,会生成一个工程名+-servlet.xml的文件作为映射配置文件.也就是说,在本例子里会生成web-inf目录下生成jpetstore-servlet.xml,用于分发配置.
    <servlet>
        <servlet-name>petstore</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>2</load-on-startup>
    </servlet>

struts的servlet,用于struts中request的请求映射,配置文件是struts-config.xml
    <servlet>
        <servlet-name>action</servlet-name>
        <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
        <load-on-startup>3</load-on-startup>
    </servlet>

设置要处理的url,这里,注释了名为action的servlet,用了petstore.也就是说,没有使用struts而是使用的spring MVC
    <servlet-mapping>
        <servlet-name>petstore</servlet-name>
        <!--
        <servlet-name>action</servlet-name>
        -->
        <url-pattern>*.do</url-pattern>
    </servlet-mapping>


官网上下载spring-framework-2.1-m3-with-dependencies.jar,解压取出\samples\jpetstore宠物商店项目,包括sql脚本,源码,工程文件,build.xml文件.这里我部属在tomcat6上,用的mysql数据库.

1>  配置tomcat的server.xml文件,HOST节点下添加上下文以及连接持,代码如下:
<Context path="/jpetstore" docBase="E:\study\jpetstore" 
                  debug="0" privileged="true" reloadable="true"   workDir="work\Catalina\localhost\jpetstore"> 
          <Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_admin_log." suffix=".txt" timestamp="true"/>
              <Resource name="jpetstore" auth="Container" type="javax.sql.DataSource"/>
                   <ResourceParams name="jpetstore">
                       <parameter>
                         <name>factory</name>
                         <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
                       </parameter>
                       <parameter>
                         <name>username</name>
                         <value>root</value>
                       </parameter>
                       <parameter>
                         <name>password</name>
                         <value></value>
                       </parameter>
                       <parameter>
                         <name>driverClassName</name>
                         <value>com.mysql.jdbc.Driver</value>
                       </parameter>
                       <parameter>
                         <name>url</name>
                         <value>jdbc:mysql://localhost:3306/jpetstore?autoReconnect=true</value>
                       </parameter>
                       <parameter>
                         <name>initialSize</name>
                         <value>20</value>
                       </parameter>
                       <parameter>
                         <name>maxActive</name>
                         <value>30</value>
                       </parameter>
                       <parameter>
                         <name>maxWait</name>
                         <value>10000</value>
                       </parameter>
                    </ResourceParams>
        </Context> 

2>   安装好mysql后,create database jpetstore; 然后导入db目录下的mysql脚本文件,jpetstore-mysql-schema.sql,jpetstore-mysql-dataload.sql

3>   修改工程下WEB-INF目录下的jdbc.properties文件,用#注释掉以前内容,用作mysql数据库,添加代码:
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/jpetstore?autoReconnect=true
jdbc.username=root
jdbc.password=
这里必须下在mysql的JDBC驱动放入lib包内.

至此,启动tomcat,输入http://localhost:8080/jpetstore,可以看到宠物商店的欢迎界面,部署成功.
分享到:
评论

相关推荐

    学习Spring 的例子JpetStore

    《Spring框架学习:以JpetStore为例》 Spring框架是Java企业级应用开发中的核心框架,它为开发者提供了丰富的功能,简化了开发流程,提高了代码的可测试性和可维护性。JpetStore作为Spring的经典示例项目,是学习...

    spring jpetstore spring附带的例子

    9. 整合Struts:虽然Spring MVC已经成为主流的Web开发框架,但在JPetStore中,Struts被用作对比和学习的工具,展示了如何在Spring环境中集成其他MVC框架,这有助于开发者理解不同框架之间的协同工作。 通过深入研究...

    spring例子: jpetstore

    在压缩包文件名称 "springapp-petclinic" 中,"petclinic"可能是JPetStore的一个变体或者相关项目,通常Spring PetClinic是一个与JPetStore类似的学习资源,用于教授Spring Boot和Spring Data JPA等现代Spring技术。...

    spring jpetstore2.5

    而JPetStore作为Spring官方提供的一个示例应用,是学习Spring MVC和Spring框架核心概念的理想起点。本文将详细探讨如何在MyEclipse集成开发环境下搭建和运行Spring JPetStore 2.5项目,以及该项目中所涉及到的关键...

    Spring jpetstore

    jpetstore的源代码是学习Spring框架的一个绝佳资源。通过阅读源码,我们可以了解Spring如何管理Bean的生命周期,如何进行依赖注入,以及如何利用AOP(面向切面编程)实现事务控制。此外,还能看到Spring MVC的控制器...

    jpetstore4.0 (spring+struts+ibatis)

    《基于Spring、Struts和iBatis的jpetstore4.0详解》 jpetstore4.0是一款经典的电子商务示例应用,它采用Spring、Struts和iBatis这三个核心框架构建,展示了如何在Java环境下实现一个完整的MVC(Model-View-...

    Spring源码学习-JPetStore.part3

    spring自带的JPetStore,我已经配置好(数据库也配置好,用的是hsqldb),可以直接导 入eclipse中运行。共3个压缩包

    spring之jpetstore

    而JPetStore作为Spring框架的经典示例项目,是学习和理解Spring核心特性的绝佳起点。本文将深入探讨Spring JPetStore项目,揭示其中蕴含的诸多技术知识点,帮助开发者提升对Spring的理解和应用能力。 1. **Spring...

    jpetstore spring 的经典完整可直接运行的例子 jpetstore

    总的来说,jpetstore项目是一个极好的学习资源,对于想要深入理解和掌握Spring、iBatis和Struts的人来说,它是不可或缺的实践案例。通过分析和调试这个项目,你不仅可以提升自己的编程技能,还能对Java Web开发的...

    MyEclipse中加载Spring的JPetStore

    通过学习和实践JPetStore,我们可以快速掌握Spring的核心技术。 加载JPetStore到MyEclipse的过程如下: 1. **项目导入**:首先,你需要下载JPetStore的源码压缩包,这在你提供的文件列表中已经包含,名为...

    spring的jpetstore工程(myeclipse)

    JPetStore作为Spring官方提供的一个示例项目,是学习Spring框架的最佳实践之一。本篇文章将深入探讨如何在MyEclipse环境中搭建和运行这个基于Spring的JPetStore工程,并介绍其中涉及的关键技术点。 首先,JPetStore...

    Spring+jpetstore+Myeclipse

    最新spring带的JPetStore的MyEclipse项目,包括了数据库,可用hsqldb直接运行,可以直接导入MyEclipse中并部署运行。 在Myeclipse里新建一个web项目,导入shopping项目即可,数据库在db文件夹里

    eclipse_spring_jpetstore.rar

    通过学习和实践JPetStore,开发者可以快速理解Spring框架的核心理念和实现方式。 三、Eclipse配置Spring环境 1. 安装Spring插件:Eclipse可以通过Marketplace安装Spring Tools Suite (STS) 插件,该插件为Spring...

    用jpetstore学习架构 使用Spring boot+MyBatis +MySQL.zip

    【标题】"用jpetstore学习架构 使用Spring boot+MyBatis +MySQL"是一个实践项目,旨在帮助开发者通过实现一个具体的电商应用——jpetstore,掌握基于Spring Boot、MyBatis和MySQL数据库的架构设计与开发技能。...

    JPetStore (Struts + Spring + Hibernate)版

    综上所述,JPetStore (Struts + Spring + Hibernate)版是一个理想的学习资源,它展示了如何在实际项目中集成和使用这些流行的技术,对于Java Web开发人员来说,深入研究这个项目可以提升他们对现代企业级应用开发的...

    Spring源码学习-JPetStore.part1

    spring自带的JPetStore,我已经配置好(数据库也配置好,用的是hsqldb),可以直接导入eclipse中运行。共3个压缩包

    Struts+Spring+Hibernate实现的jpetstore

    在 jpetstore 中,Spring 作为整个应用的“胶水”,管理各个组件的生命周期和依赖关系。它可能通过XML配置或注解驱动的方式来定义bean,这些bean可以是DAO(数据访问对象)、Service、Controller等。Spring还提供了...

    Spring源码学习-JPetStore.part2

    spring自带的JPetStore,我已经配置好(数据库也配置好,用的是hsqldb),可以直接导 入eclipse中运行。共3个压缩包

    jpetstore开源学习代码

    《jpetstore开源学习代码》是一个深受开发者欢迎的学习资源,特别针对那些希望深入理解J2EE(Java 2 Platform, Enterprise Edition)技术的初学者和有经验的程序员。jpetstore项目是一个示例应用,它展示了如何在...

    jpetstore

    该jpetstore经典案例为最新SPRING开发包里面的完全案例,并集成到eclipse里面了,在eclipse里面可以直接运行并调试,在工作目录里面直接建立jpetstore目录,自动导入该目录下文件,修改jdbc.properties配置文件,连接...

Global site tag (gtag.js) - Google Analytics