Spring學習筆記 (5)

2022-06-01 23:00:08 字數 339 閱讀 1769

spring:

1. 需要注入的屬性寫到配置檔案中:

如果屬性為基礎型別,需要有setter()方法,必須也寫在包的類**中,因為需要setter()方法

如果屬性為類,需要有無參構造方法,可不寫在包的類**中

2. spring-config.xml的告知:

在程式入口告知:

對於測試入口:@contextconfiguration("classpath:spring-config.xml")

對於servlet,在web.xml:

contextconfiglocation

classpath:spring-config.xml

spring學習筆記5

場景 想通過magicboss.getcar方法每次都得到乙個新的car例項。car是prototype,但magicboss是singleton。可以採用lookup方法注入。依賴於cglib。cglib可以在執行期動態操作位元組碼,為bean動態建立子類或實現類。public inte ce m...

shiro學習筆記(5) spring整合

spring整合shiro 1 1 jar org.apache.shiro shiro spring 1.2.3 2 web.xml contextconfiglocation classpath spring shiro.xml org.springframework.web.context.c...

Spring學習筆記5 註解方式AOP

第一步 註解配置業務類 使用 component pservice 註解productservice 類 1 package com.spring.service 23 import org.springframework.stereotype.component 45 component pser...