看JSP应用开发详解这本书的时候,27章有个购物车的实例,感觉书上写的有些繁琐,就自己实现了一个,功能可能没有书上的全面,但是自己成就感还是蛮高的
实现了:用户登录,查看购物车,添加商品到购物车,清空购物车,增加或减少购物车商品数量
工程目录:
ssm框架maven工程实现商品的增加-LMLPHP
jdbc.properties是为多种关系数据库提供统一访问

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/{数据库名称}
jdbc.username=root
jdbc.password={你的数据库密码}
jdbc.initialSize=0
jdbc.maxActive=20

initialSize为初始化链接大小
maxActive为连接池最大数量
servlet.xml配置文件部分:

    <!-- 配置数据源   dbcp数据库连接池  可以配置初始连接数量,最大连接数量等等参数-->
    <bean id="dataSource" class="org.apache.tomcat.dbcp.dbcp.BasicDataSource" destroy-method="close">
        <property name="driverClassName" value="${jdbc.driver}"/>
        <property name="url" value="${jdbc.url}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
        <!-- 初始化连接大小 -->
        <property name="initialSize" value="${jdbc.initialSize}"></property>
        <!-- 连接池最大数量 -->
        <property name="maxActive" value="${jdbc.maxActive}"></property>
    </bean>

实现部分:
web.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">

  <servlet>
    <servlet-name>spring</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

</web-app>

spring-servlet.xml文件:

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc.xsd
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- 打开基于注解的spring handler mapping -->
    <mvc:annotation-driven />
    <!-- 配置spring自动扫描所有的controller -->
    <context:component-scan base-package="com.controller"></context:component-scan>

    <!-- 配置spring mvc controller和view的映射关系 以及告知spring要使用jstl -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
        <property name="prefix" value="/WEB-INF/jsp/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

    <!-- spring配置全局异常的处理 -->
    <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
        <property name="exceptionMappings">
            <props>
                <prop key="java.lang.RuntimeException">error</prop>
            </props>
        </property>
    </bean>

    <!-- 配置spring文件上传的 -->
    <bean id="multipartResolver"
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
    <!-- one of the properties available; the maximum file size in bytes -->
    <property name="maxUploadSize" value="20000000"/>
    </bean>

    <!-- spring上配置mybatis的集成 -->
    <!-- 配置加载数据连接资源文件的配置,把数据库连接数据抽取到一个properties资源文件中方便管理 -->
    <context:property-placeholder location="/WEB-INF/assets/jdbc.properties"/>

    <!-- 配置数据源   dbcp数据库连接池  可以配置初始连接数量,最大连接数量等等参数-->
    <bean id="dataSource" class="org.apache.tomcat.dbcp.dbcp.BasicDataSource" destroy-method="close">
        <property name="driverClassName" value="${jdbc.driver}"/>
        <property name="url" value="${jdbc.url}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
        <!-- 初始化连接大小 -->
        <property name="initialSize" value="${jdbc.initialSize}"></property>
        <!-- 连接池最大数量 -->
        <property name="maxActive" value="${jdbc.maxActive}"></property>
    </bean>

    <!-- spring和MyBatis整合,mybatis配置映射文件 -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <!-- 自动扫描mapping.xml文件 -->
        <property name="mapperLocations" value="classpath:com/mapping/*.xml"></property>
    </bean>

    <!-- (事务管理)transaction manager, use JtaTransactionManager for global tx -->
    <bean id="transactionManager"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource" />
    </bean>

    <!-- DAO接口所在包名,Spring会自动查找其下的类 -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.dao" />
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
    </bean>

    <!-- spring搜索service服务类的包路径 -->
    <context:component-scan base-package="com.service.impl"></context:component-scan>

</beans>

成功登录后:
ssm框架maven工程实现商品的增加-LMLPHP

查看购物车,当前购物车无商品

将选定的商品添加到购物车后
ssm框架maven工程实现商品的增加-LMLPHP
库存商品会相应减少

目前只实现了这几个简单的功能

崩溃的几点:
1.要在数据库中查询Product这个表中的数据,结果链接不到,问题在。。。。。在定义Product这个类时,他的所有属性的get,和 set方法不能写反,属性按照什么顺序,get方法和set方法也必须按照什么顺序。
找了好久的错误啊,差点摔电脑了
2.我用Map表储存当前购物车的商品,需要将添加的商品和Map表中的比较,用carlist.containsKey(product)方法比较,如果一样就只在数量+1,不一样再显示添加的商品,结果之前每次比较都是false,
会出现下面这种结果:
ssm框架maven工程实现商品的增加-LMLPHP
怎么都不知道问题出在哪里~~~结果最后自己想抽自己个嘴巴子,在定义Product类的时候没有重写equals();和hashCode()方法!还是要多复习啊,竟然忘记了。

--------------------- 本文来自 Hello_and_world 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/Hello_and_world/article/details/56497184?utm_source=copy

10-03 14:17