主頁(yè) > 知識(shí)庫(kù) > spring @component的作用詳細(xì)介紹

spring @component的作用詳細(xì)介紹

熱門(mén)標(biāo)簽:如何用中國(guó)地圖標(biāo)注數(shù)字點(diǎn) 聊城智能電銷(xiāo)機(jī)器人外呼 泰州泰興400電話 怎么申請(qǐng) 百度地圖添加標(biāo)注圖標(biāo)樣式 企業(yè)怎么在聯(lián)通申請(qǐng)400電話 好操作的電話機(jī)器人廠家 地圖標(biāo)注市場(chǎng)怎么樣 南京新思維電話機(jī)器人 南昌市地圖標(biāo)注app

spring @component的作用詳細(xì)介紹

1、@controller 控制器(注入服務(wù))
2、@service 服務(wù)(注入dao)
3、@repository dao(實(shí)現(xiàn)dao訪問(wèn))
4、@component (把普通pojo實(shí)例化到spring容器中,相當(dāng)于配置文件中的bean id="" class=""/>)

  @Component,@Service,@Controller,@Repository注解的類,并把這些類納入進(jìn)spring容器中管理。

下面寫(xiě)這個(gè)是引入component的掃描組件

context:component-scan base-package=”com.mmnc”> 

 其中base-package為需要掃描的包(含所有子包) 

       1、@Service用于標(biāo)注業(yè)務(wù)層組件
       2、@Controller用于標(biāo)注控制層組件(如struts中的action)
       3、@Repository用于標(biāo)注數(shù)據(jù)訪問(wèn)組件,即DAO組件.
       4、@Component泛指組件,當(dāng)組件不好歸類的時(shí)候,我們可以使用這個(gè)注解進(jìn)行標(biāo)注。   
             @Service public class UserServiceImpl implements UserService { }      

            @Repository public class UserDaoImpl implements UserDao { } getBean的默認(rèn)名稱是類名(頭字母小寫(xiě)),如果想自定義,可以@Service(“***”)               這樣來(lái)指定,這種bean默認(rèn)是單例的,如果想改變,可以使用@Service(“beanName”) 

           @Scope(“prototype”)來(lái)改變??梢允褂靡韵路绞街付ǔ跏蓟椒ê弯N(xiāo)毀方法(方法名任意): @PostConstruct public void init() { }

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

您可能感興趣的文章:
  • spring-boot @Component和@Bean的區(qū)別詳解
  • Spring @Configuration和@Component的區(qū)別
  • Spring 報(bào)錯(cuò):元素 "context:component-scan" 的前綴 "context" 未綁定的問(wèn)題解決
  • Spring實(shí)戰(zhàn)之@Autowire注解用法詳解
  • Spring @Transactional注解失效解決方案
  • Spring注解和同步鎖不能同步問(wèn)題解決
  • springmvc的@Validated注解使用
  • Spring boot注解@Async線程池實(shí)例詳解
  • spring @Component注解原理解析

標(biāo)簽:臨汾 開(kāi)封 烏蘭察布 山南 白銀 銅川 自貢 吉林

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《spring @component的作用詳細(xì)介紹》,本文關(guān)鍵詞  spring,@component,的,作用,詳細(xì),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《spring @component的作用詳細(xì)介紹》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于spring @component的作用詳細(xì)介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章