目錄
一、spring檔案配置
二、spring整合mybatis的配置檔案
三、springmvc配置檔案的整合
四、新增事務
1.web.xml檔案中配置過程a.配置上下文引數路徑(web.xml)
contextconfiglocation
b.配置核心***(目的是初始化時就建立乙個ioc容器供全域性使用)(web.xml)
org.springframework.web.context.contextloaderlistener
c.配置過濾器(此處只配解決中文亂碼的過濾器)(web.xml)
encodingfilter
org.springframework.web.filter.characterencodingfilter
encoding
utf-8
/*
外部的資源檔案為連線資料庫的四大金剛(jdbc.properties)
jdbc.driverclass=com.mysql.jdbc.driver
jdbc.url=jdbc:mysql://localhost:3306/mybatis
jdbc.username=root
jdbc.password=123456
<?xml version="1.0" encoding="utf-8" ?>
select * from tb_user;
1.web.xml檔案中配置攔截路徑(web.xml)
springmvc
org.springframework.web.servlet.dispatcherservlet
contextconfiglocation
classpath:spring/springmvc-servlet.xml
1/
2.springmvc核心檔案的配置(springmvc-servlet.xml)
1.配置事務管理器
2.配置事務屬性
3.配置切面,讓事務作用於切點
spring配置檔案
1 配置檔案的簡化 1 屬性的 property name foo value foovalue value property 簡化為 property name foo value foovalue 2 引用bean property name foo ref bean foobean prope...
spring配置檔案
context annotation config 是用於啟用那些已經在spring容器裡註冊過的bean上面的註解,也就是顯示的向spring註冊 autowiredannotationbeanpostprocessor commonannotationbeanpostprocessor pers...
Spring配置檔案的
關於spring配置一直是乙個讓人頭痛的問題,因此,在這裡對spring的配置進行了乙個詳細的整理,以便於能夠幫助讀者配置spring web.xml配置 context dao.xml檔案配置 context jdbc.xml檔案配置 context service.xml檔案配置 jdbc.pr...