在本地可以运行的SSH项目,发布到linux服务器上就报404错误,求解

时间:2020-12-10 20:04:23
报错日志:
Apr 30, 2017 12:32:17 PM org.apache.catalina.core.ApplicationContext log
INFO: No Spring WebApplicationInitializer types detected on classpath
Apr 30, 2017 12:32:17 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring root WebApplicationContext

这是我的applicationContext.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.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">

      <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
           <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
           <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/library"></property>
           <property name="user" value="root"></property>
           <property name="password" value="123"></property>
      </bean>
      
      <!-- 配置事物 -->
      <bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
           <property name="sessionFactory" ref="sessionFactory"></property>
      </bean>
      
      <!-- 开启事务注解 -->
      <tx:annotation-driven transaction-manager="transactionManager"/>
      
      <!-- 配置SessionFactory -->
      <bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
          <!-- 指定数据库信息 -->
          <property name="dataSource" ref="dataSource"></property>
          <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
      </bean>

      <!-- 分模块操作,将book有关的对象封装到另一个spring文件中再导入 -->
      <import resource="classpath:book.xml"/>
      <import resource="classpath:user.xml"/>
      
      <!-- 配置hibernateTemplate对象 -->
      <bean id="hibernateTemplate" class="org.springframework.orm.hibernate5.HibernateTemplate">
           <property name="sessionFactory" ref="sessionFactory"></property>
      </bean>
      
      
      
</beans>

2 个解决方案

#1


发的不是报错日志

#2


WebApplicationContext
你看一下你有没有别的配置这个文件,
报错信息是找不到这个,

#1


发的不是报错日志

#2


WebApplicationContext
你看一下你有没有别的配置这个文件,
报错信息是找不到这个,