spring新实例 - yingziaiai/SetupEnv GitHub Wiki
http://www.mkyong.com/tutorials/spring-tutorials/ http://www.javatpoint.com/spring-tutorial http://www.tutorialspoint.com/spring/
http://blog.csdn.net/isea533/article/details/50359390 Spring Boot 集成MyBatis
基于SpringBoot + Mybatis实现SpringMVC Web项目【原创】 http://7player.cn/2015/08/30/%E3%80%90%E5%8E%9F%E5%88%9B%E3%80%91%E5%9F%BA%E4%BA%8Espringboot-mybatis%E5%AE%9E%E7%8E%B0springmvc-web%E9%A1%B9%E7%9B%AE/
看官网上挺多实例的,而且发现官网的例子更加清晰与符合文章意欲描述的特性,这样去编译查看其实例可以更深入准确的把握含义。 比如理解a RESTful Web Service
https://spring.io/guides/gs/rest-service/#scratch
https://github.com/spring-guides/gs-rest-service.git
于是下载了打算编译,结果发现要求是JDK版本要是1.8以上, 不然报错: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project gs-rest-service: Fatal error compiling: 无效的目标发行版: 1.8 -> [Help 1] [ERROR]
http://www.tuicool.com/articles/uUJjEb
http://blog.csdn.net/tianxiawuzhei/article/details/48263789
http://www.cnblogs.com/midnight-coder/p/5561665.html
https://spring.io/guides/gs/serving-web-content/
真的要多看官网的描述思想,这样才能跟着完成任务,不然想太多,比如这里跟着git下来后,我就开始自己编译想导入eclipse,结果人家就是一开始通过不了,整个项目多又杂的,后来自己eclipse->create maven project->quickstart->update the pom.xml->edit the source code , and run the main java with JAVA Application, then it passed
then see the result with 'localhost:8080/greeting?name=xingxing'
http://blog.csdn.net/chenloveit/article/details/38779149
http://www.2cto.com/kf/201401/275827.html
以上全是使用了spring boot; http://www.cnblogs.com/xinzhao/p/5551828.html
还有一个spring LDAP: LDAP用户验证(Spring-LDAP) http://blog.csdn.net/whuqin/article/details/7448136
https://spring.io/guides/gs/authenticating-ldap/
file upload https://spring.io/guides/gs/uploading-files/
以下是spring+yarn+mapreduce: https://spring.io/guides/gs/yarn-basic/
跨域提交: https://spring.io/guides/gs/rest-service-cors/
Consuming a RESTful Web Service with jQuery https://spring.io/guides/gs/consuming-rest-jquery/
JPA: https://spring.io/guides/gs/accessing-data-jpa/
https://spring.io/guides/gs/accessing-data-mongodb/
batch job
https://spring.io/guides/gs/batch-processing/
Validating Form Input
https://spring.io/guides/gs/validating-form-input/