spring 使用註解管理物件

2021-08-19 20:13:58 字數 601 閱讀 6198

1、導包

3、在需要spring管理的類中新增註解

////@component("user")//普通的

// @service("user") // service層

// @controller("user") // web層

@repository("user")// dao層

//以上四種註解的功能實質上是一樣的只是為了方便閱讀

//指定物件的作用範圍

@scope(scopename="singleton")

public class user

@postconstruct //在物件被建立後呼叫.init-method

public void init()

@predestroy //在銷毀之前呼叫.destory-method

public void destory()

Spring註解管理

將配置檔案中的資訊封裝成實體類 8 qualifier qualifier註解了,qualifier的意思是合格者,通過這個標示,表明了哪個實現類才是我們所需要的,我們修改呼叫 新增 qualifier註解,需要注意的是 qualifier的引數名稱必須為我們之前定義 service註解的名稱之一!...

spring 註解使用

一 配置web.xml 1 問題 spring專案中有多個配置檔案mvc.xml dao.xml 2 解決 在web.xml中 contextconfiglocation web inf xml 表示xml檔案路徑 xml表示字尾名為xml的任意檔案 3 可以使用 逗號分隔 二 controller...

Spring事物註解管理詳解

要使事務註解有效,首先需要在spring配置檔案中加入如下 同時,必須引入tx 網域名稱。transactional的應用 加在service層或者dao層類名之上,或者是public方法上,表示該方法使用了事務,對於其它非public的方法,如果標記了 transactional也不會報錯,但方法...