在做
spring
相關開發時,時常要用到一些相關的
bean
的宣告,如資料庫連線池,
hibernate
的sessionfactory
宣告等。一下是一些常用到的
bean
宣告。
1 message source
的宣告,重要用於系統的資訊提示。
messages
2 屬性值的宣告,主要為
bean
宣告檔案中使用:
web-inf/mail.properties
web-inf/jdbc.properties
3 custom editor
的註冊,以下是日期的註冊:
yyyy-mm-dd
false
4 資料庫連線池的設定:
$ $
$ $
5 hibernate
的設定:
$ 6 jotm
的事務設定:
7 hibernate
的事務設定:
8 bean
的事務宣告:
propagation_required,readonly
propagation_required,readonly
propagation_required,readonly
propagation_required
9 email
的傳送者宣告: $
10 基本的設定:
democontroller
secondcontroller
總結:以上是一些常用的
bean
的宣告,你一般會用到的,你可以使用
intellij
的live template
功能,可以設定某些引數,很快就完成了
bean
的宣告。
Spring的幾個常用註解解釋
resource 獲取spring容器中象 依賴注入 configuration 申明這是乙個配置類 componentscan basepackages 定義掃瞄的路徑從中找出標識了需要裝配的類自動裝配到spring的bean容器中 spring框架跟junit整合 runwith springj...
spring幾個常用註解
controller 控制層,就是我們的action層 service 業務邏輯層,就是我們的service或者manager層 repository 持久層,就是我們常說的dao層 而 component 字面意思就是元件 它在你確定不了事哪乙個層的時候使用。resource 用於注入,j2ee提...
Spring如何使用註解的方式建立bean
第一種使用配置類的方式 1 建立乙個bean package com.springbean public class person public void setname string name public void setage integer age public string getname...