我是按照老师一步步指令坐下来的,出现了404求大神指点

来源:5-4 添加事务管理-Spring整合Hibernate

Rebug

2017-06-20 16:10

web.xml <!-- 配置spring框架的核心监听器 -->    <listener>    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>    </listener>    <context-param>    <param-name>contextConfigLocation</param-name>    <param-value>classpath:applicationContext.xml</param-value>    </context-param>    <!-- struts2核心过滤器的配置 -->  <filter>        <filter-name>struts2</filter-name>        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>    </filter>    <filter-mapping>        <filter-name>struts2</filter-name>        <url-pattern>/*</url-pattern>    </filter-mapping>struts.xml<struts><package name="ssh" extends="struts-defaults" namespace="/"><action name="product_*" class="productAction" method="{1}"></action></package></struts>log4j.propertieslog4j.rootLogger=DEBUG,consolelog4j.appender.console=org.apache.log4j.ConsoleAppenderlog4j.appender.console.layout=org.apache.log4j.PatternLayoutlog4j.appender.s=console.layout.ConversionPattern=%d [%t] %-5p [%c] - %m%nlog4j.appender.org.apache=INFOapplicationContext.xml<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"xmlns:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsdhttp://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"><!-- 引入外部属性文件 --><context:property-placeholder location="classpath:jdbc.properties"/><!-- 配置连接池 --><bean id="dataSource" class="com.mchange.v2.c3p0.ComboPlloedDataSource"><property name="driverClass" value="${jdbc.driverClass}"></property><property name="jdbcUrl" value="${jdbc.url}"></property><property name="user" value="${jdbc.username}"></property><!-- <property name="password" value="${jdbc.password}"></property> --></bean><!-- 配置Hibernate相关的属性 --><bean id="seesionFactory" class="org.springframework.orm.hibernate3.localSessionFactoryBean"><!-- 注入连接池 --><property name="dataSource" ref="dataSource"></property><!-- 配置Hibernate的属性 --><property name="hibernateProperties"><props><prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop><prop key="hibernate.show_sql">true</prop><prop key="hibernate.format_sql">true</prop><prop key="hibernate.hbm2ddl.auto">update</prop></props></property><!-- 加载Hibernate的映射文件 --><property name="mappingResources"><list><value>cn/ssh/domain/Product.hbm.xml</value></list></property></bean><!-- 配置Action的类 --><bean id="productAction" class="cn.ssh.action.ProductAction" scope="prototype"><!-- 手动注入Service --><property name="productService" ref="productService"></property></bean><!-- 配置业务层的类 --><bean id="productService" class="cn.ssh.service.ProductService"><property name="productDao" ref="productDao"></property></bean><!-- 配置Dao的类 --><bean id="productDao" class="cn.ssh.dao.ProductDao"><property name="sessionFactory" ref="seesionFactory"></property></bean><!-- 配置事务管理器 --><bean id="transactionManager" class="org.sprongframework.orm.hibernate3.HibernateTransactionManager"><property name="sessionFactory" ref="seesionFactory"></property></bean><!-- 开启注解事务 --><tx:annotation-driven transaction-manager="transactionManager"/></beans>​jdbc.propertiesjdbc.driverClass=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/sshjdbc.username=root

写回答 关注

3回答

  • weibo_倍儿帅QAQ_03470657
    2017-09-08 22:01:39

    我默默地重启了一下编辑器,然后好了-。-

  • ckx0709
    2017-06-22 00:04:38

    你这样不开控制台来校对代码会累死人。

    小米的忧2

    我的也是404错误,方便求教一下吗

    2017-07-06 22:43:29

    共 1 条回复 >

  • ckx0709
    2017-06-22 00:03:42

    你把控制台报错贴出来!根据报错来找问题!

基于SSH实现员工管理系统之框架整合篇

本视频教程主要介绍环境搭建和SSH框架整合,逐层深入理解学习

49832 学习 · 344 问题

查看课程

相似问题