【spring】 的理解 【轉載的】

在使用SpringMvc的時候,配置文件中咱們常常看到 annotation-driven 這樣的註解,其含義就是支持註解,通常根據前綴 tx、mvc 等也能很直白的理解出來分別的做用。<tx:annotation-driven/> 就是支持事務註解的(@Transactional) 、<mvc:annotation-driven> 就是支持mvc註解的,說白了就是使Controller中可使用MVC的各類註解。spring

    首先,<tx:annotation-driven/>  會有一個屬性來指定使用哪一個事務管理器,如:<tx:annotation-driven transaction-manager="transactionManager" />。而後事務管理器 transactionManager 會引用 dataSource (若是咱們使用JPA或hibernate,也須要指定一個 entityManagerFactory ),dataSouce 確定就是直接對數據庫的了。數據庫

    這樣逐層引用下去,因此咱們使用@Transactionl 註解能夠控制事務就通俗易懂了。另外要提一下的就是 spring 是使用 aop 經過 asm 操做Java字節碼的方式來實現對方法的先後事務管理的。mvc

    說到這裏,已經有了對 <tx:annotation-driven/> 的簡單理解,那咱們是否就能夠在程序中全部被spring管理的類上均可以使用@Transactional註解了呢,在Service上可使用@Transactional 註解這個是確定的了,那總有些人也想弄明白可否在Controller 使用?答案顯然是「不必定」的(與時間配置有關),下面作下解釋:app

在 spring-framework-reference.pdf 文檔上有這樣一段話:spa

<tx:annotation-driven/> only looks for @Transactional on beans in the same application context it is defined in. This means that, if you put <tx:annotation-driven/> in a WebApplicationContext for a DispatcherServlet, it only checks for @Transactional beans in your controllers, and not your services. .net

意思就是:<tx:annoation-driven/>只會查找和它在相同的應用上下文件中定義的bean上面的@Transactional註解,若是你把它放在Dispatcher的應用上下文中,它只檢查控制器(Controller)上的@Transactional註解,而不是你services上的@Transactional註解。hibernate

    因此,能夠肯定的是咱們是能夠在Controller上使用事務註解的,可是不推薦這樣作,這裏只是爲了說明spring對<tx:annotation-driven/>的使用。事務

相關文章
相關標籤/搜索