mybatis加载不到全局配置文件conf.xml

Mybatis加载不到全局的配置文件conf.xml

String resource = "json/conf.xml";
InputStream is = SocketServer.class.getClassLoader().getResourceAsStream(resource);
SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(is);

is得到的是null值

经查,发现conf.xml没被编译到target目录下,

没加载到文件资源,在pom.xml文件中加入以下配置

 


 
    src/main/java
   
      **/*.xml
   

 


  
    src/main
   
      **/*.xml
   

 

mybatis加载不到全局配置文件conf.xml_第1张图片

你可能感兴趣的:(mybatis加载不到全局配置文件conf.xml)