新建Maven Project
选择webapp快速构架,这样就生成项目了
可以右键项目Properties更改编码设置
在这里可以更改java和Dynamic Web Module
设置Assembly
如果只有src/main/resources的话需要手动三个source folder
src/main/java src/test/java src/test/resources
在build path里面更改output folder
pom.xml设置
4.0.0 com.xiao.xiong cly war 0.0.1-SNAPSHOT cly Maven Webapp http://maven.apache.org junit junit 4.9 test org.springframework spring-context 3.0.5.RELEASE cly
beans.xml
public static void main(String[] args) { ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); Car car = (Car) ctx.getBean("car1"); System.out.println(car); }