您好,登錄后才能下訂單哦!
Java程序員最常見(jiàn)的SpringBoot有那些組件注冊(cè)方式?
很多程序員在開(kāi)發(fā)的過(guò)程中都可能會(huì)遇到SpringBoot組件注冊(cè)這個(gè)問(wèn)題,那么SpringBoot到底有那些組件注冊(cè)方式呢?
今天主要就來(lái)和大家分享這個(gè)SpringBoot組件注冊(cè)的幾種方式,希望可以幫大家快速解決當(dāng)下的這個(gè)難題。
傳統(tǒng)的XML+@ImportResource【案例demo2】
項(xiàng)目包結(jié)構(gòu)
├─java
│ └─com
│ └─example
│ └─demo2
│ │ Demo2Application.java
│ │
│ └─entity
│ Stu.java
│
└─resources
application.properties
beans.xml
project.text
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">
<!--id用來(lái)標(biāo)識(shí)bean,是唯一的,且只有一個(gè);name定義的是bean的alias,可以有多個(gè),并可能與其他的bean重名。-->
<!--如果id和name都沒(méi)有指定,則用類全名作為name-->
<bean id="stu" class="com.example.demo2.entity.Stu">
</bean>
</beans>
Demo2Application(啟動(dòng)程序)
package com.example.demo2;
import com.example.demo2.entity.Stu;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.ImportResource;@SpringBootApplication<br/" rel="nofollow">br/>@SpringBootApplication<br///使用@ImportResource導(dǎo)入xml資源
@ImportResource(locations = "classpath:/beans.xml")
public class Demo2Application {
public static void main(String[] args) {
//使用ConfigurableApplicationContext上下文即可獲取Beans
ConfigurableApplicationContext context = SpringApplication.run(Demo2Application.class, args);
Stu stu = context.getBean("stu", Stu.class);
System.out.println(stu.toString());
//context類型為org.springframework.context.annotation.AnnotationConfigApplicationContext
System.out.println(context.getClass().getName());
context.close();
}
}
ClassPathXmlApplicationContext與ConfigurableApplicationContext的關(guān)系
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。