发布于2020-11-19 20:36 阅读(1248) 评论(0) 点赞(17) 收藏(3)
Spring的简单了解(现阶段可能并不能理解,但是要了解并且知道)
Spring是一个IOC(DI)
和AOP
的容器框架
它可以在IOC
和AOP
的基础上可以整合各种开源框架和第三方类库。(整合:可以整合使用其它学过的框架以及类库)
在idea中创建Maven工程(暂时不需要用到Web所以没有必要去创建一个Web工程),然后声明Spring所需要的4个基础容器包和2个日志包。
顺便贴一下Maven仓库地址:https://mvnrepository.com/
Spring的4个基础jar包:
<!--Spring的4个基础jar包(容器包)-->
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.3.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-beans -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>5.3.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-expression -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>5.3.1</version>
</dependency>
然后是两个日志包(第三方):
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.14.0</version>
</dependency>
直接在Src下New创建Spring Config,名字为applicationContext.xml(习惯命名,也可以为其它)
并且这个xml文件应该放在项目被标记为resource的文件下
applicationContext.xml的头部文件:
<?xml version="1.0" encoding="UTF-8"?>
<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 http://www.springframework.org/schema/beans/spring-beans.xsd">
</beans>
将配置文件与项目相关联
创建一个实体类对象Person有一个sayHello方法
在applicationContext.xml中配置
<Bean>
的配置解释<Bean>
有多种方式,有注解,xml等(此处初学,只用xml方式)作者:java大师
链接:http://www.javaheidong.com/blog/article/809/1c5f6e849245b10c05b4/
来源:java黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 java黑洞网 All Rights Reserved 版权所有,并保留所有权利。京ICP备18063182号-2
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!