使用maven构建spring mvc项目

也入行2年多了,用多了spring-boot,突然看老项目要新建一个spring项目做测试都很费劲,所以简单记录下过程

1,新建maven项目 选择web-app那项

2,右键properties添加lib,jdk,tomcat

3,pom导包


    
      junit
      junit
      3.8.1
      test
    
    
      org.springframework
      spring-core
      3.2.4.RELEASE
      compile
    
    
      org.springframework
      spring-web
      3.2.4.RELEASE
      compile
    
    
      org.springframework
      spring-oxm
      3.2.4.RELEASE
      compile
    
    
      org.springframework
      spring-tx
      3.2.4.RELEASE
      compile
    
    
      org.springframework
      spring-jdbc
      3.2.4.RELEASE
      compile
    
    
      org.springframework
      spring-webmvc
      3.2.4.RELEASE
      compile
    
    
      org.springframework
      spring-aop
      3.2.4.RELEASE
      compile
    
    
      org.springframework
      spring-context-support
      3.2.4.RELEASE
      compile
    
    
      org.springframework
      spring-test
      3.2.4.RELEASE
      compile
    
    
      javax.servlet
      jstl
      1.2
      compile
    
    
      taglibs
      standard
      1.1.2
      compile
    
    
      javax.servlet
      javax.servlet-api
      3.0.1
      compile
    
  

其实不用导这么多,但方便测试就多一点

4,配置web.xml


	
		encodingFilter
		org.springframework.web.filter.CharacterEncodingFilter
		
			encoding
			UTF-8
		
	
	
		encodingFilter
		/*
	
  
		spring
		org.springframework.web.servlet.DispatcherServlet
	  	  
	    	    contextConfigLocation  
	    	
                    classpath*:/spring-mvc.xml
		  
	
 
    
        spring
        /
      

主要是servlet这一段,启动项目时读取classpath也就是resouce下的spring-mvc.xml文件

5,配置spring-mvc.xml



    
    
    
 
    
    
    
    
    
    
        
        
    
    

差不多就是这样了,数据库配置和页面什么helloWorld就不写了。。

你可能感兴趣的:(maven,jdk,spring,配置,java,eclipse)