记个小细节
java.sql.SQLException: Access denied for user 'as'@'localhost' (using password: YES)
之所以出现这个错误是因为在db.properties中写了username=xxx
而username这个变量好像被jvm环境占用了,所以在applicationContext.xml中${username}取值得到的是jvm中username的值,
而不是db.properties中username的值,因此无法访问数据库
所以,在db.properties的username只要不写成username,解决问题。