JAVA本地程序使用FileSystemXmlApplicationContext读取application-datasorce.xml进行数据库操作


使用绝对路径读取,就绝对不会出错

程序代码如下,这个类是BookDaoTest

 1        String appContextPath = BookDaoTest.class.getClassLoader().getResource("").getPath() + "../";
 2             File file = new File(appContextPath);
 3             String abPath = null;
 4             try {
 5                 abPath = file.getCanonicalPath();
 6             } catch (IOException e) {
 7                 e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
 8             }
 9             String[] ctxConfig = {"file:" + abPath + "/applicationContext-beans.xml", "file:" + abPath + "/applicationContext-datasource.xml", "file:" + abPath + "/applicationContext-security.xml"};
10             ApplicationContext context = new FileSystemXmlApplicationContext(ctxConfig);
11 
12             BookDao bookDao = (BookDao) context.getBean("bookDao");


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM