spring註解定義bean

2021-09-29 18:44:57 字數 443 閱讀 4274

1)利用註解宣告該類

@component("student") //id名為:student

public class student

2)配置掃瞄器

xmlns:context=""

//掃瞄某包(多個包用逗號分隔)

執行流程:spring在啟動的時候,會根據base-package在 該包中掃瞄所有類,查詢這些類是否有註解@component("studentdao"),如果有,則將該類 加入spring ioc容器。

在程式設計中:@component()包含的範圍太大,不易於理解。

對其@component細化:

->dao層註解:@repository

->service層註解:@service

->控制器層註解:@controlle

spring 註解注入bean

通過註解方式注入bean,需要在配置類下注入bean 第一步,配置掃瞄資料夾 首先要在spring.xml中配置需要掃瞄的配置類 base package com.kylin.config 第二步,新建註解配置類 configuration public class redisconfigurati...

spring 註解掃瞄bean配置

spring公共配置 spring 會自動掃瞄com.zghw下的spring註解 常用註解 定義bean的註解 controller controller bean的名稱 定義控制層bean,如action service service bean的名稱 定義業務層bean repository ...

Spring 裝配Bean 基於註解

註解 就是乙個類,使用 註解名稱 開發中 使用註解 取代 xml配置檔案 註解使用前提,新增命名空間,讓spring掃瞄含有註解類 在xml檔案中加這段 讓其掃瞄類中的所有註解 1.component 把普通pojo例項化到spring容器中,用來取代 bean class component id...