rg.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are:
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'driverClassName' threw exception; nested exception is java.lang.IllegalStateException: Could not load JDBC driver class [${jdbc.driver}]
我使用的是jdbc8.0版本 ,在使用spring 连接 用配置文件db.properties文件数据库
db.properties文件如下
jdbc.url=jdbc:mysql://127.0.0.1:3306/setcharcter?characterEncoding=utf8&serverTimezone=UTC
jdbc.password=123456
jdbc.username=root
jdbc.driver=com.mysql.cj.jdbc.Driver
在使用spring编写数据源时,发现不能使用${jdbc.driver}获取DriverClassName获取驱动名称
不然回报如上面的错误,, 还有一种,没有在bin目录下加入jdbc,架包也会 报,无法连接
而是直接写,
<!-- 使用注解 -->
<context:annotation-config />
<!-- 扫描注解 -->
<context:component-scan base-package="com.serviceImpl"></context:component-scan>
<!-- 加载属性文件 -->
<context:property-placeholder location="classpath:db.properties"/>
<!-- 数据源 -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="url" value="${jdbc.url}"></property>
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"></property>
<property name="password" value="${jdbc.password}"></property>
<property name="username" value="${jdbc.username}"></property>
</bean>