springmvc+mybatis+maven整合实例

pom.xml


	4.0.0
	com.jiepu
	webmybatis
	war
	0.0.1-SNAPSHOT
	webmybatis Maven Webapp
	http://maven.apache.org
	
		
			org.springframework
			spring-test
			3.2.0.RELEASE
		
		
			org.springframework
			spring-webmvc
			3.2.0.RELEASE
		
		
			org.springframework
			spring-core
			3.2.0.RELEASE
		
		
			org.springframework
			spring-jdbc
			3.2.0.RELEASE
		
		
			org.springframework
			spring-tx
			3.2.0.RELEASE
		
		
			org.springframework
			spring-context
			3.2.0.RELEASE
		

		
			org.mybatis
			mybatis
			3.2.0
		
		
			org.mybatis
			mybatis-spring
			1.2.0
		

		
			mysql
			mysql-connector-java
			5.1.32
		
		
			junit
			junit
			4.11
			test
		
		
			com.alibaba
			druid
			1.0.8
		
		
			org.aspectj
			aspectjweaver
			1.7.1
		

		
			org.codehaus.jackson
			jackson-mapper-asl
			1.9.11
		
		
			commons-fileupload
			commons-fileupload
			1.2.2
		
		
			javax.servlet
			servlet-api
			3.0-alpha-1
		
		
			log4j
			log4j
			1.2.17
		
		
			com.alibaba
			fastjson
			1.1.26
		

	
	
		
			
			
				maven-resources-plugin
				2.5
				
					
						copy-resources
						validate
						
							copy-resources
						
						
							${project.build.directory}/classes/com/jiepu/mapping
							
								
									src/main/java/com/jiepu/mapping
									true
								
							
						
					
				
			
			
				org.apache.maven.plugins
				maven-compiler-plugin
				3.1
				
					1.7
					1.7
				
			
		
	
	
		UTF-8
		UTF-8
	



你可能感兴趣的:(java)