一、后端开发的概念和技术栈
1.1 什么是后端开发?
https://wenda.so.com/q/1534708989219531?src=140
1.2 java后端技术图谱
二、JavaEE概念
http://blog.sina.com.cn/s/blog_78003d720102vnl1.html
三、JavaWeb掌握什么?
- 网络通信协议:http
- 服务器:tomcat(开源,与java结合) jetty(用于嵌用) weblogic (商用)nginx apache
- 云服务器:阿里云 腾讯云
- servlet、过滤器、监听器
- 其他:跨越、负载均衡、缓存、日志、git、maven
四、Spring框架特点及构成
https://baike.so.com/doc/6841943-7059231.html
五、Spring起步练习步骤
- 安装IDEA
- 下载maven的压缩包
- 再新建文件夹maven_jar
- 最后配置IDEA的环境 :file—other settings—Settings for new projects—Bulid,Execution,Deployment—Bulid Tools—maven—maven home directory(放apache-maven-3.5.4的路径)—User settings file(放settings.xml)—Local repository(maven_jar)—Apply
- 下载 框架到maven_jar中:右击项目—Add Frameworks Support—maven—ok—Enable Auto Import
! 注意
-
解压后的setting.xml中有些没有<mirror>需要手动添加
setting配置,指定阿里云镜像
所有路径不能用中文!!!
快捷键
ctrl+shift+上下箭头:快速换行
ctrl+y:删除整行配置文件id要一致,class要建在根目录中,读取bean的时候注意类型的转换
-
在Spring的bean配置中,通过constructor-arg和property传值,同等条件下使用property。当属型类型为基本类型,如String、double,int,float等时用value,属性是对象时用ref
如