spring預設的事務回滾原則
unchecked exception或者範圍小點說 runtimeexception時事務會回滾
而checkedexception事務不會回滾,如空指標異常
spring解決中文亂碼問題
新增spring 內建的過濾器 org.springframework.web.filter.characterencodingfilter
spring解決hibernate因session關閉導致的延遲載入例外問題
可以配置 org.springframework.orm.hibernate3.support.opensessioninviewfilter 過濾
在struts2裡面配置spring
需在struts2.xml裡面配置如下屬性
表明struts2中的action由spring負
責建立。
但是注意的是 需要將 action 的scope 設為 prototype,因為spring預設的是使用單例形式建立
bean的
聽課筆記 三
任何變數未經宣告就賦值屬於全域性變數,為全域性物件所有 a 123 一切宣告的全域性變數,全是window的屬性 var a 123 function test var a b 123 b屬於window,因為b未宣告就被賦值,暗示性變數 過程 1 建立ao物件 執行期上下文 2.找函式形參和變數宣...
Oracle聽課筆記
資料庫物件 又稱模式物件 同義詞是現有物件的乙個別名 作用1.簡化sql 2.隱藏物件名稱和所有者 3.提供對物件的公共訪問 私有同義詞 create synonym emp syn for scott.emp 公有同義詞 create public synonym emp syn for scot...
時間程式設計聽課筆記
標頭檔案 time.h 1.獲取日曆時間 time t time time t tloc 返回值和引數的指向time t都是日曆時間 例如 time t t time null 2.時間轉化 轉化為格林威治時間 greenwich mean time struct tm gmtime const t...