91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Spring中對JavaConfig進行配置

發布時間:2021-03-22 16:44:35 來源:億速云 閱讀:143 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關怎么在Spring中對JavaConfig進行配置,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

JavaConfig是Spring的一個子項目,在Spring4之后,它稱為了Spring的核心功能!

實體類:

package com.lrx.poji;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
//說明這個類被Spring注冊到了容器中
@Component
public class User {
 @Value("lixin")
 private String name;

 public String getName() {
   return name;
 }

 public void setName(String name) {
   this.name = name;
 }

 @Override
 public String toString() {
   return "User{" +
       "name='" + name + '\'' +
       '}';
 }
}

配置文件:

package com.lrx.config;

import com.lrx.poji.User;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

//這個也會被Spring容器托管,因為它本來就是一個@Component
// @Configuration代表一個類,就和我們之前的ApplicationContext.xml是一樣的
@Configuration
@ComponentScan("com.lrx.poji")
public class LiConfig {
  //注冊一個bean,就相當于xml寫的一個bean標簽
  //這個方法的名字就相當于bean標簽中的ID屬性
  //方法的返回值相當于bean標簽中的class屬性
  @Bean
  public User getUser(){
    return new User();  //就是要注入到bean的對象
  }
}

測試類:

import com.lrx.config.LiConfig;
import com.lrx.poji.User;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class MyTest {
  public static void main(String[] args) {
    //如果完全使用了配置類方式去做,我們就只能通過AnnotationConfig上下文來獲取容器
    // 然后通過配置類的class對象來加載!
    ApplicationContext context=new AnnotationConfigApplicationContext(LiConfig.class);
    User getUser= (User) context.getBean("user");
    System.out.println(getUser.getName());
  }
}

以上就是怎么在Spring中對JavaConfig進行配置,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汨罗市| 彩票| 依安县| 大埔区| 石渠县| 沧州市| 乌拉特后旗| 明水县| 安国市| 保定市| 拜城县| 托里县| 理塘县| 江源县| 海宁市| 曲麻莱县| 仁化县| 汉沽区| 江北区| 喜德县| 孟村| 宝丰县| 类乌齐县| 鄂州市| 玛纳斯县| 五常市| 利川市| 仙桃市| 德庆县| 泸州市| 拜城县| 元谋县| 施甸县| 项城市| 阳春市| 珲春市| 金寨县| 镇宁| 安岳县| 英德市| 江城|