IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Spring Boot 框架的第一章Xml 和 JavaConfig -> 正文阅读

[Java知识库]Spring Boot 框架的第一章Xml 和 JavaConfig

1 什么是 JavaConfig

JavaConfig: 是 Spring 提供的使用 java 类配置容器。 配置 Spring IOC 容器的纯 Java 方法。

优点:

1.可以使用面像对象的方式, 一个配置类可以继承配置类,可以重写方法
2.避免繁琐的 xml 配置

2 Xml 配置容器

创建001-pre-boot 项目

pom.xml

<dependencies>
	<dependency>
		<groupId>org.springframework</groupId>
		<artifactId>spring-context</artifactId>
		<version>5.3.1</version>
	</dependency>
   <dependency>
   	  <groupId>junit</groupId>
   	  <artifactId>junit</artifactId>
   	  <version>4.12</version>
   </dependency>
</dependencies>
<build>
	<plugins>
	  <!-- 编译插件 -->
	  		<plugin>
	  			<artifactId>maven-compiler-plugin</artifactId>
	  			<!-- 插件的版本 -->
	  			<version>3.5.1</version>
	  			<!-- 编译级别 -->
	  			<configuration>
	  				<source>1.8</source>
	  				<target>1.8</target>
	  				<!-- 编码格式 -->
	  				<encoding>UTF-8</encoding>
	  			</configuration>
		  </plugin>		
	 </plugins>
 </build>


创建数据类 Student

public class Student{
	private Integer id;
	private String name;
	private Integer age;
	// set | get




}

resources 目录下创建 Spring 的配置文件 applicationContext.xml

<bean id="myStudent" class="com.bjpowernode.vo.Student">
 	<property name="id" value="1001" />
 	<property name="name" value="李强国" />
 	<property name="age" value="20" />
</bean>

单元测试:

@Test
public void test01(){
	String config="applicationContext.xml";
	ApplicationContext ctx=new 
ClassPathXmlApplicationContext(config);
	Student student = (Student) ctx.getBean("myStudent");
	System.out.println("student="+student);	
	


}	

3 JavaConfig 配置容器

	JavaConfig 主要使用的注解
	@Configuration:放在类的上面, 这个类相当于 xml 配置文件,可以在其中声明 bean
	@Bean:放在方法的上面, 方法的返回值是对象类型, 这个对象注入到 spring ioc 容器 

创建配置类(等同于 xml 配置文件)

/**
* @Configuration:表示当前类是 xml 配置文件的作用
* 在这个类中有很多方法, 方法的返回值是对象。
* 在这个方法的上面加入@Bean, 表示方法返回值的对象放入到容器中。
* @Bean == <bean></bean>
*/





@Configuration
public class SpringConfig {
	// 定义方法, 方法的返回值是对象。  @Bean:表示把对象注入到容器中。 位置: 方法的上面  @Bean 没有使用属性,默认对象名称是方法名




	@Bean
	public Student createStudent(){
		Student student = new Student();
		student.setId(1002);
		student.setName("周仓");
		student.setAge(29);
		return student;
}

// name :指定对象的名称
@Bean(name = "myStudent2")
 public Student makeStudent(){

		Student student = new Student();
		student.setId(1003);
		student.setName("诸葛亮");
		student.setAge(30);
		return student;


}

@Bean
public Date myDate(){
	return new Date();

}

}

}


测试方法:

//使用 JavaConfig
@Test
public void test02(){
	//没有 xml 配置文件,使用 java 类代替 xml 配置文件 的作用
	ApplicationContext ctx = new AnnotationConfigApplicationContext(SpringConfig.class);
	Student student = (Student) ctx.getBean("createStudent");
	System.out.println("student==="+student);
	}
@Test
public void test03(){
  //没有 xml 配置文件,使用 java 类代替 xml 配置文件 的作用


		ApplicationContext ctx = new 	AnnotationConfigApplicationContext(SpringConfig.class);
		Student student = (Student) ctx.getBean("myStudent2");
		System.out.println("myStudent2==="+student);
		Object myDate = ctx.getBean("myDate");
		System.out.println("myDate = " + myDate);

}












}

4 @ImportResource

@ImportResource 是导入 xml 配置,等同于 xml 文件的 resources
创建数据类:

public class Cat {
		 private String cardId;
		 private String name;
		 private Integer age;
		  // set |get

}

创建配置文件 beans.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">

	<bean id="myCat" class="com.bjpowernode.vo.Cat">
		<property name="cardId" value="XSET29001" />
		<property name="name" value="tom 猫"/>
		<property name="age" value="3" />
	</bean>

</beans>

创建配置类:

@Configuration
@ImportResource(value = {"classpath:beans.xml","classpath:applicationContext.xml"})

public class SystemConfig {
 //使用@Bean 声明 bean
 }

创建测试方法:

@Test
public void test04(){
	//没有 xml 配置文件,使用 java 类代替 xml 配置文件 的作用
	 ApplicationContext ctx = new AnnotationConfigApplicationContext(SystemConfig.class);
	 Cat cat = (Cat) ctx.getBean("myCat");
	 System.out.println("cat==="+cat);










}

5 @PropertyResource

@PropertyResource 是读取 properties 属性配置文件

在 resources 目录下创建 config.properties

tiger.name=东北老虎
tiger.age=6

创建数据类 Tiger

@Component("tiger")
public class Tiger {
	 @Value("${tiger.name}")
	 private String name
	 @Value("${tiger.age}")
	 private Integer age;
	 @Override
	 public String toString() {
		return "Tiger{" +
				"name='" + name + '\'' +
				", age=" + age +
				'}';

}}




修改 SystemConfig 文件

@Configuration
@PropertySource(value = "classpath:config.properties")
@ComponentScan(value = "com.bjpowernode.vo")
public class SystemConfig {
		//使用@Bean 声明 bean
		}




创建测试方法

@Test
public void test05(){
	//没有 xml 配置文件,使用 java 类代替 xml 配置文件 的作用
	ApplicationContext ctx = new AnnotationConfigApplicationContext(SystemConfig.class);
	Tiger tiger = (Tiger) ctx.getBean("tiger");
	System.out.println("Tiger==="+tiger);
	}

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-09-24 20:42:44  更:2022-09-24 20:45:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 9:25:59-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码