spring作为javaEE的一个全方位应用程序框架,它既可以应用于Java应用的开发,还可以应用于服务端开发。
spring优点众多:
上层架构依赖于下层架构
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Ga9hIJU1-1667407872554)(https://p1-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/ebe6e8f439204748b3a785efa1df1466~tplv-k3u1fbpfcp-watermark.image?)]
创建maven项目
打开pox.xml引用spring依赖
org.springframework
spring-context
5.2.10.RELEASE
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="..." class="...">
bean>
<bean id="..." class="...">
bean>
beans>
在spring开发时,除了要自带的jar包外,其核心容器还需要commons.logging的jar包。到官方下载压缩包即可,然后解压到自定义目录。
如果是在官网直接下载,则Spring目录结构文件夹介绍如下: