默认路径是当前项目的target/classes目录
可以使用以下代码查看:
String s[] = System.getProperty("java.class.path").split(";");
for (String string : s) {
System.out.println(string);
}
如果要定位到WebContent目录下,要使用FileSystemXmlApplicationContext。
如果要定位到绝对路径:
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(
"file:E:/....../src/main/resources/spring/spring-cassandra.xml");
注意,此时cassandra.xml中的相对路径也要改成绝对路径,否则无法跨项目执行。