已采纳回答 / _Spike
之前忘了在哪看到的大佬说的,用${}的话,jdbc.properties里面的配置要在前面统一加上“jdbc.”我第一次测试也报错了,然后在jdbc.properties加了 "jdbc.",就测试通过了,把这个问题反馈一下,大家报错了的话可以试一下改这个配置。比如jdbc.driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/seckill?useUnicode=true&characterEncoding=utf-8j...
2016-09-09
mvn archetype:generate -DgroupId=org.springMybatisDemo-DartifactId=SMDemo-DarchetypeArtifactId=maven-archetype-webapp -DarchetypeCatalog=local
2016-09-04
最新回答 / lnj
刚刚发现是自己写错了:<property name="configuration" value="classpath:mybatis-config.xml"></property>应该写成这样的:<property name="configLocation" value="classpath:mybatis-config.xml"></property>
2016-09-03