您好,登錄后才能下訂單哦!
這篇文章主要講解了“Spring怎么使用注解進(jìn)行引用類型的自動(dòng)裝”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Spring怎么使用注解進(jìn)行引用類型的自動(dòng)裝”吧!
簡(jiǎn)單解析:配置類替代以前的配置文件,實(shí)體類提供對(duì)象,業(yè)務(wù)類中有實(shí)體類的引用對(duì)象,在業(yè)務(wù)層中實(shí)現(xiàn)引用類的自動(dòng)裝配。
配置類:(關(guān)于配置類中兩個(gè)注解的解釋可以參考前面文章)
package com.itheima.config; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; @Configuration //設(shè)置為配置類 @ComponentScan("com.itheima") //在com.otheima這個(gè)包下掃描bean對(duì)象 public class SpringConfig { }
實(shí)體類BookDaoImpl:
package com.itheima.dao.impl; import com.itheima.dao.BookDao; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import org.springframework.stereotype.Repository; @Repository //注解注冊(cè)bean public class BookDaoImpl implements BookDao { public void save() { System.out.println("book dao save ..."); } }
實(shí)體接口BookDao:
package com.itheima.dao; public interface BookDao { public void save(); }
業(yè)務(wù)類BookServiceImol:
package com.itheima.service.impl; import com.itheima.dao.BookDao; import com.itheima.service.BookService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class BookServiceImol implements BookService { @Autowired private BookDao bookDao; public void save() { System.out.println("book service save...."); bookDao.save(); } }
@Service:注冊(cè)bean對(duì)象,在執(zhí)行類中使用getBean()方法獲取.
@Autowired:進(jìn)行自動(dòng)裝配,如果沒(méi)有此句話,將會(huì)出現(xiàn)以下錯(cuò)誤運(yùn)行結(jié)果:
業(yè)務(wù)接口BookService:
package com.itheima.service; public interface BookService { public void save(); }
執(zhí)行類App3:
package com.itheima; import com.itheima.config.SpringConfig; import com.itheima.dao.BookDao; import com.itheima.service.BookService; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import java.awt.print.Book; public class App3 { public static void main(String[] args) { AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(SpringConfig.class); BookService service=ctx.getBean(BookService.class); service.save(); } }
感謝各位的閱讀,以上就是“Spring怎么使用注解進(jìn)行引用類型的自動(dòng)裝”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Spring怎么使用注解進(jìn)行引用類型的自動(dòng)裝這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。