shenhp 发表于 2017-12-13 10:26:35

Spring警告: Could not load driverClass com.mysql.jdbc.Driver(待解决)

<?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"
  
   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-4.0.xsd">
  
   
  
   <!-- 导入属性文件 -->
  
   <context:property-placeholder location="classpath:db.properties"/>
  
   
  
   <bean>
  
         <!-- 使用外部化属性文件的属性 -->
  
         <property name="user" value="${user}"></property>      
  
         <property name="password" value="${password}"></property>
  
         <property name="driverClass" value="${driverclass}"></property>
  
         <property name="jdbcUrl" value="${jdbcurl}"></property>
  
   </bean>
  

  
</beans>
页: [1]
查看完整版本: Spring警告: Could not load driverClass com.mysql.jdbc.Driver(待解决)