Spring註解驅動開發 容器day01

2022-03-03 07:31:04 字數 2587 閱讀 1845

1.回顧舊的方式(xml去開發)!此處省略pom.xml檔案!

person實體類:

test類:

package

com.yikuan.test;

import

org.junit.after;

import

org.junit.before;

import

org.junit.test;

import

import

com.atguigu.bean.person;

public

class

testannotation

@test

public

void

test01()

@after

public

void

destory()

}結果:

person [name=張三, age=18]

2.使用註解去開發 (以前配置檔案的方式---->配置類的方式)

1.實體類同上敘述

2.配置類

package

com.atguigu.config;

import

org.springframework.context.annotation.bean;

import

org.springframework.context.annotation.configuration;

import

com.atguigu.bean.person;

/*** 配置類==old配置檔案

* @author

administrator *

*/@configuration

//告訴spring這是乙個配置類

public

class

mainconfig

}3.測試類

package

com.yikuan.test;

import

org.junit.after;

import

org.junit.before;

import

org.junit.test;

import

import

org.springframework.context.annotation.bean;

import

import

com.atguigu.bean.person;

import

com.atguigu.config.mainconfig;

public

class

testannotation

@test

public

void

test01()

@test

public void test02()

}

@after

public

void

destory()

}結果:

person [name=李四, age=20]

yikuan

Spring註解驅動開發 01

匯入依賴 spring context spring aop spring bean spring core commons logging spring expression 註解式開發 配置類 config 等同於配置檔案 configuration 告訴spring這是乙個配置類 bean 給...

spring容器註解

spring 常用的註解有以下幾種 1 注入userservice 2 resource name userservice 3 private userservice userservice 注意 在action宣告的 userservice 變數的型別必須是 userserviceimpl 或者是...

Spring註解驅動開發 Profile環境切換

profile spring提供的可以根據當前環境 開發 測試 生產 動態的啟用和切換一系列的元件的功能,可以使用 profile註解實現,比如資料來源根據環境的切換。profile註解用於指定元件在哪個環境下會註冊到ioc容器中,若不加該註解則在所有環境下都會註冊到容器中 propertysour...