最赞回答 / 慕盖茨8218757
@Value("${content}") private String content;改成 @Value("${server.content}") private String content;
2017-04-11
已采纳回答 / winson127
数据库配置信息改成spring.datasource.url=jdbc:sqlserver://localhost:55656;databaseName=STUDYDB
2017-04-10
最赞回答 / K冰封承諾
@ConfigurationProperties(prefix="") 没有指定 classpath 时,IDEA 提示没有找到 classpath。原因 @叶隐狂岚 已经解释了在没指定路劲的情况下,默认在 resource 下的 applications.properties (yml) 中查找,如果找到则返回值,如果没有找到则返回默认值null/0/false…所以不用管它也是可以正常运行的,觉得碍眼可以关闭 IDEA 的提示:setting 下搜索 spring,找到 springBoot 取消勾选...
2017-03-30
已采纳回答 / ReallyWangGod
spring: profiles: active: test datasource: data-username: com.mysql.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/dbgirl username: root password: root jpa: hibernate: ddl-auto: update show-sql: true这样才对
2017-03-23