spring 使用註解註冊bean

2021-10-20 20:24:57 字數 684 閱讀 5588

使用spring容器帶的**@component**就能自動註冊了

不過也要在配置檔案中開啟註解,不然註解不生效

***.xml

<?xml version="1.0" encoding="utf-8"?>

xmlns

=""xmlns:xsi

=""xmlns:context

=""xsi:schemalocation=""

>

<

context:component-scan

base-package

="com.sun"

/>

<

context:annotation-config

/>

beans

>

user

@component

public

class

user

這裡還可以用**@value**這個註解來放在屬性上來注入屬性

相當於《property name=「userdao」 value=「阿傑」》

例:

@component

public

class

user

Spring如何使用註解的方式建立bean

第一種使用配置類的方式 1 建立乙個bean package com.springbean public class person public void setname string name public void setage integer age public string getname...

Spring學習筆記之通過註解配置Bean(1)

1 配置形式 基於xml檔案的方式 基於註解配置bean 2 bean的配置方式 通過全類名 反射 通過工廠方法 靜態方法 例項工廠方法 factorybean 3 特定元件 component 基本註解,標識了乙個受spring管理的元件 repository 標識持久層元件 service 標識...

spring 中使用 groovy 動態 bean

spring 中使用 groovy 動態 bean 原文出處 在 spring 中使用 groovy 等動態語言的好處就是 在伺服器上改改或新加個 groovy 檔案就可以有新的功能,不用重新打包並部署。對一些規則性的邏輯處理 動態性強的應用可以 groovy。示例下在 spring 中使用 gro...