SpringBoot+mybatis+Oracle+MAVEN整合代码

架构采用springBoot 集成 mybatis 使用oracle数据库 maven 管理的WEB 接口项目

springBoot v1.5.2.RELEASE


经过N次调整,解决各种问题 。

支持JSP访问

支持打JAR包访问WEB资源 , 在pom.xml目录下运行: mvn clean package

支持定时任务

支持接口http 和https 调用

支持代理服务器请求

支持HTTPS 服务

支持热部署更新





资源下载:


http://download.csdn.net/download/thl331860203/9964655 (csdn系统更新失效了)

https://download.csdn.net/download/thl331860203/9955929




pom.xml



	4.0.0
	
		org.springframework.boot
		spring-boot-starter-parent
		1.5.2.RELEASE
	

	com.newculture
	mybatis
	jar
	0.0.1-SNAPSHOT
	chamc
	http://maven.apache.org


	
		3.3.2
		1.3.2
		11.2.0.3
		1.4
		1.7
		UTF-8
	

	


		
			cglib
			cglib
			2.2.2
		

		
			com.alibaba
			fastjson
			1.1.41
		

		
		
			org.springframework.boot
			spring-boot-starter-web
		
		
		
			org.mybatis.spring.boot
			mybatis-spring-boot-starter
			1.2.0
		
		
		
			com.github.pagehelper
			pagehelper
			4.0.0
		


		
		
			com.oracle
			ojdbc6
			${ojdbc6.version}
		


		
		
			com.alibaba
			druid
			1.0.28
		
		
		
			com.google.code.gson
			gson
		


		
		
			org.springframework.boot
			spring-boot-configuration-processor
			true
		

		
			junit
			junit
			test
		

		

		
			org.springframework.boot
			spring-boot-starter-tomcat
			provided
		

		
			org.apache.tomcat.embed
			tomcat-embed-jasper
			provided
		


		
		
			javax.mail
			mail
			${mail.version}
		

		
		
			org.apache.httpcomponents
			httpclient
		

		
			commons-io
			commons-io
			2.4
		


		
			javax.servlet
			jstl
		

		
		
			commons-codec
			commons-codec
		


		
			org.apache.maven.plugins
			maven-resources-plugin
			2.4.3
		


		
			org.bouncycastle
			bcprov-jdk15on
			1.54
		




		
			org.springframework.boot
			spring-boot-devtools
			true
			true
		


	
	
		chamc

		
			
				${basedir}/src/main/resources
				
					**/**
				
				false
			
			
				${basedir}/src/main/webapp
				META-INF/resources
				
					**/**
				
			

		



		

			
				org.springframework.boot
				spring-boot-maven-plugin
				1.4.2.RELEASE
				
					
						org.springframework
						springloaded
						1.2.6.RELEASE
					
				
                
					true
				
			


		

		compile
	



你可能感兴趣的:(JAVA)