【无标题】java解决class path resource [jdbc.properties] cannot be opened because it does not exist问题

在对Spring框架进行使用的过程中,有的小伙伴可能在使用注解导入jdbc.properties配置文件时会出现这个错误
出现这个错误的原因可能如下:

@PropertySource("classpath:jdbc.properties")
public class SpringConfig{

}
//其中一个重要原因就是你没有使用classpath,而是直接@PropertySource("jdbc.properties")

好啦,知道原因以后我们来说一说解决方法:

  1. 添加classpath,如上面的代码一样
  2. 将你的jdbc.properties文件移动到target/classes下边,如下图所示
    【无标题】java解决class path resource [jdbc.properties] cannot be opened because it does not exist问题_第1张图片
    好啦,这样试一试,是不是就大功告成了呢,喜欢的小伙伴可以留言点赞哦!

你可能感兴趣的:(ssm,java,spring,intellij-idea)