From 0e3479f5a170c147a5409e7bf912692525644a77 Mon Sep 17 00:00:00 2001 From: Snailclimb Date: Mon, 21 May 2018 16:51:44 +0800 Subject: [PATCH] =?UTF-8?q?Spring=E7=9B=B8=E5=85=B3=E5=86=85=E5=AE=B9?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 最初版,后续陆续添加 --- 主流框架/Spring学习与面试.md | 40 +++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 主流框架/Spring学习与面试.md diff --git a/主流框架/Spring学习与面试.md b/主流框架/Spring学习与面试.md new file mode 100644 index 00000000..2e5aabe0 --- /dev/null +++ b/主流框架/Spring学习与面试.md @@ -0,0 +1,40 @@ + +# Spring + +## Spring相关教程/资料: + +> ### 官网相关 + +[Spring官网](https://spring.io/) + +[Spring系列主要项目](https://spring.io/projects) + +从配置到安全性,Web应用到大数据 - 无论您的应用程序的基础架构需求如何,都有一个Spring Project来帮助您构建它。 从小处着手,根据需要使用 - Spring是通过设计模块化的。 + +[Spring官网指南](https://spring.io/guides) + +无论您在构建什么,这些指南都旨在尽可能快地提高您的工作效率 - 使用Spring团队推荐的最新Spring项目发布和技术。 + +[Spring官方文档翻译(1~6章)](https://blog.csdn.net/tangtong1/article/details/51326887) + +> ### 系统学习教程: + +[极客学院Spring Wiki](http://wiki.jikexueyuan.com/project/spring/transaction-management.html) + +[Spring W3Cschool教程 ](https://www.w3cschool.cn/wkspring/f6pk1ic8.html) + +> ### 一些常用的东西 + +[Spring Framework 4.3.17.RELEASE API](https://docs.spring.io/spring/docs/4.3.17.RELEASE/javadoc-api/) + +默认浏览器打开,当需要查某个类的作用的时候,可以在浏览器通过ctrl+f搜索。 + + +## 面试必备知识点 +> ### Spring事务管理 + + +> ### Spring AOP,IOC实现原理(IOC依赖注入使用的最多) + + +> ### Spring源码阅读 \ No newline at end of file