Spring Boot中配置dataSource时value="${username}"获取的是windows用户名
配置Spring框架的时候出现
六月 05, 2019 9:43:05 下午 com.alibaba.druid.support.logging.JakartaCommonsLoggingImpl error
严重: {dataSource-1} init error
java.sql.SQLException: Access denied for user 'leo'@'localhost' (using password: YES)
反复检查用户名和密码均是正确的,而且当前用户可以正常登记。经过反复验证发现直接赋值的时候可以获取db.property内的内容
所以需要将value="${username}"中的内容加前缀。测试即可通过。
@Value("${driverClassName}")
private String driverClassName;
@Value("${url}")
private String url;
@Value("${jdbc.username}")
private String username;
@Value("${password}")
private String password;
@Value("${initialSize}")
private int initialSize;
测试结果为
六月 05, 2019 9:50:07 下午 org.springframework.context.support.AbstractApplicationContext prepareRefresh
信息: Refreshing org.springframework.context.support.GenericApplicationContext@2cbb3d47: startup date [Wed Jun 05 21:50:07 GMT+08:00 2019]; root of context hierarchy
六月 05, 2019 9:50:07 下午 com.alibaba.druid.support.logging.JakartaCommonsLoggingImpl info
信息: {dataSource-1} inited
原因分析
username在windows下默认取值为电脑的账号,一般电脑账号为administrator,如果你的电脑账号是自己设置的,那就为设置的账号。
数据库连接时数据库中没有administrator用户或者跟你电脑账号一样名字的用户,就会报错,一般为了避免和Windows基本配置冲突,数据库连接名常常写的较长如{jdbc.username}
这样就可以唯一识别用户名