Spring 是一個開源框架,是一個分層的 JavaEE 一站式框架。html
所謂一站式框架是指 Spring 有 JavaEE 開發的每一層解決方案。java
優勢:mysql
Spring開發包解壓後的目錄介紹:web
DataAccess 用於數據訪問,WEB 用於頁面顯示,核心容器也就是IOC部分。面試
控制反轉(Inversion of Control)是指將對象的建立權反轉(交給)Spring。spring
使用IOC就須要導入IOC相關的包,也就是上圖中核心容器中的幾個包:beans,context,core,expression四個包。sql
傳統方式建立對象:數據庫
UserDAO userDAO=new UserDAO();express
進一步面向接口編程,能夠多態:apache
UserDAO userDAO=new UserDAOImpl();
這種方式的缺點是接口和實現類高耦合,切換底層實現類時,須要修改源代碼。程序設計應該知足OCP元祖,在儘可能不修改程序源代碼的基礎上對程序進行擴展。此時,可使用工廠模式:
class BeanFactory{ public static UserDAO getUserDAO(){ return new UserDAOImpl(); } }
此種方式雖然在接口和實現類之間沒有耦合,可是接口和工廠之間存在耦合。
使用工廠+反射+配置文件的方式,實現解耦,這也是 Spring 框架 IOC 的底層實現。
//xml配置文件 //<bean id="userDAO" class="xxx.UserDAOImpl"></bean> class BeanFactory{ public static Object getBean(String id){ //解析XML //反射 Class clazz=Class.forName(); return clazz.newInstance(); } }
在 docs 文件中包含了 xsd-configuration.hmtl 文件。其中定義了 beans schema。
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> //在此配置bean <bean id="userService" class="x.y.UserServiceImpl"> </bean> </beans>
調用類:
ApplicationContext applicationContext=new ClassPathXmlApplicationContext("applicationContext.xml");
UserService userService=(UserService)applicationContext.getBean("userService");
userService.save();
DI 指依賴注入,其前提是必須有 IOC 的環境,Spring 管理這個類的時候將類的依賴的屬性注入進來。
例如,在UserServiceImpl.java中:
public class UserServiceImpl implements UserService{ private String name; public void setName(String name){ this.name=name; } public void save(){ System.out.println("save "+name); } }
在配置文件中:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="userService" class="spring.demo1.UserServiceImpl"> <!--配置依賴的屬性--> <property name="name" value="tony"/> </bean> </beans>
測試代碼:
@Test public void demo2(){ //建立Spring工廠 ApplicationContext applicationContext=new ClassPathXmlApplicationContext("applicationContext.xml"); UserService userService=(UserService)applicationContext.getBean("userService"); userService.save(); }
運行結果:
save tony
能夠看到,在配置文件中配置的屬性,在 Spring 管理該類的時候將其依賴的屬性成功進行了設置。若是不使用依賴注入,則沒法使用接口,只能使用實現類來進行設置,由於接口中沒有該屬性。
getBean()
方法時,纔會生成類的實例。生命週期:
做用範圍:
<bean id="car" class="demo.Car"> <constructor-arg name="name" value="bmw"> <constructor-arg name="price" value="123"> </bean>
<bean id="employee" class="demo.Employee"> <property name="name" value="xiaoming"> <property name="car" ref="car"> </bean>
<beans xmlns="http://www.springframework.org/schema/beans" //引入p名稱空間 xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> </beans>
若是是普通屬性:
<bean id="car" class="demo.Car" p:name="bmv" p:price="123"> </bean>
若是是引用類型:
<bean id="employee" class="demo.Employee" p:name="xiaoming" p:car-ref:"car"> </bean>
<bean id="car" class="demo.Car"> <property name="name" value="#{'xiaoming'}"> <property name="car" ref="#{car}"> </bean>
<bean id="car" class="demo.Car"> <property name="namelist"> <list> <value>qirui</value> <value>baoma</value> <value>benchi</value> </list> </property> </bean>
若是你對技術提高很感興趣,歡迎1~5年的工程師能夠加入個人Java進階之路來交流學習:908676731。裏面都是同行,有資源共享,還有大量面試題以及解析。歡迎一到五年的工程師加入,合理利用本身每一分每一秒的時間來學習提高本身,不要再用"沒有時間「來掩飾本身思想上的懶惰!趁年輕,使勁拼,給將來的本身一個交代!
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!-- bean definitions here --> </beans>
<context:component-scan base-package="demo1">
屬性若是有set方法,將屬性注入的註解添加到set方法
屬性沒有set方法,將註解添加到屬性上。
@Component("UserDao")//至關於配置了一個<bean> 其id爲UserDao,對應的類爲該類
public class UserDAOImpl implements UserDAO { @Override public void save() { // TODO Auto-generated method stub System.out.println("save"); } }
組件註解,用於修飾一個類,將這個類交給 Spring 管理。
有三個衍生的註解,功能相似,也用來修飾類。
AOP 是 Aspect Oriented Programming 的縮寫,意爲面向切面編程,經過預編譯方式和運行期動態代理實現程序功能的統一維護的一種技術,是OOP的延續。
AOP 可以對程序進行加強,在不修改源碼的狀況下,能夠進行權限校驗,日誌記錄,性能監控,事務控制等。
也就是說功能分爲兩大類,一類是核心業務功能,一類是輔助加強功能。兩類功能彼此獨立進行開發。好比登陸功能是核心業務功能,日誌功能是輔助加強功能,若是有須要,將日誌和登陸編制在一塊兒。輔助功能就稱爲切面,這種能選擇性的、低耦合的把切面和核心業務功能結合的編程思想稱爲切面編程。
JDK 動態代理只能對實現了接口的類產生代理。Cglib 動態代理能夠對沒有實現接口的類產生代理對象,生成的是子類對象。
使用 JDK 動態代理:
public interface UserDao { public void insert(); public void delete(); public void update(); public void query(); }
實現類:
public class UserDaoImpl implements UserDao { @Override public void insert() { System.out.println("insert"); } @Override public void delete() { System.out.println("delete"); } @Override public void update() { System.out.println("update"); } @Override public void query() { System.out.println("query"); } }
JDK 代理:
public class JDKProxy implements InvocationHandler{ private UserDao userDao; public JDKProxy(UserDao userDao){ this.userDao=userDao; } public UserDao createProxy(){ UserDao userDaoProxy=(UserDao)Proxy.newProxyInstance(userDao.getClass().getClassLoader(), userDao.getClass().getInterfaces(), this); return userDaoProxy; }
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { if("update".equals(method.getName())){ System.out.println("權限校驗"); return method.invoke(userDao, args); } return method.invoke(userDao, args); } }
經過動態代理加強了 update 函數。 測試類:
public class Demo1 { @Test public void demo1(){ UserDao userDao=new UserDaoImpl(); UserDao proxy=new JDKProxy(userDao).createProxy(); proxy.insert(); proxy.delete(); proxy.update(); proxy.query(); } }
運行結果爲:
insert
delete
權限校驗
update
query
CglibCglib 是第三方開源代碼生成類庫,能夠動態添加類的屬性和方法。
與上邊JDK代理不一樣,Cglib的使用方式以下:
public class CglibProxy implements MethodInterceptor{ //傳入加強的對象 private UserDao customerDao; public CglibProxy(UserDao userDao){ this.userDao=userDao; } public UserDao createProxy(){ Enhancer enhancer=new Enhancer(); enhancer.setSuperclass(userDao.getClass()); enhancer.setCallback(this); UserDao proxy=(UserDao)enhancer.create(); return proxy; }
@Override
public Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) throws Throwable { if("save".equals(method.getName())){ System.out.println("enhance function"); return methodProxy.invokeSuper(proxy, args); } return methodProxy.invokeSuper(proxy, args); } }
若是實現了接口的類,底層採用JDK代理。若是不是實現了接口的類,底層採用 Cglib代理。
AspectJ 是一個 AOP 的框架,Spring 引入 AspectJ,基於 AspectJ 進行 AOP 的開發。
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!-- bean definitions here --> </beans>
public class ProductDaoImpl implements ProductDao { @Override public void save() { System.out.println("save"); } @Override public void update() { System.out.println("update"); } @Override public void find() { System.out.println("find"); } @Override public void delete() { System.out.println("delete"); } } <bean id="productDao" class="demo1.ProductDaoImpl"></bean>
public class MyAspectXML { public void checkPri(){ System.out.println("check auth"); } } <bean id="myAspect" class="demo1.MyAspectXML"></bean>
<aop:config> <aop:pointcut expression="execution(* demo1.ProductDaoImpl.save(..))" id="pointcut1"/> <aop:aspect ref="myAspect"> <aop:before method="chechPri" pointcut-ref="pointcut1"/> </aop:aspect> </aop:config>
<aop:before method="chechPri" pointcut-ref="pointcut1"/> public void checkPri(JoinPoint joinPoint){ System.out.println("check auth "+joinPoint); }
<aop:after-returning method="writeLog" pointcut-ref="pointcut2" returning="result"/> public void writeLog(Object result){ System.out.println("writeLog "+result); }
<aop:around method="around" pointcut-ref="pointcut3"/> public Object around(ProceedingJoinPoint joinPoint) throws Throwable{ System.out.println("before"); Object result=joinPoint.proceed(); System.out.println("after"); return result; }
<aop:after-throwing method="afterThrowing" pointcut-ref="pointcut4" throwing="ex"/> public void afterThrowing(Throwable ex){ System.out.println("exception "+ex.getMessage()); }
<aop:after method="finallyFunc" pointcut-ref="pointcut4"/> public void finallyFunc(){ System.out.println("finally"); }
基於 execution 函數完成
語法:[訪問修飾符] 方法返回值 包名.類名.方法名(參數)
其中任意字段可使用*代替表示任意值
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> </beans>
<bean id="orderDao" class="demo1.OrderDao"></bean> public class OrderDao { public void save(){ System.out.println("save order"); } public void update(){ System.out.println("update order"); } public void delete(){ System.out.println("delete order"); } public void find(){ System.out.println("find order"); } }
<aop:aspectj-autoproxy/>
@Aspect
public class MyAspectAnno { @Before(value="execution(* demo1.OrderDao.save(..))") public void before(){ System.out.println("before"); } } <bean id="myAspect" class="demo1.MyAspectAnno">
@AfterReturning(value="execution(* demo1.OrderDao.save(..))",returning="result") public void after(Object result){ System.out.println("after "+result); }
@Around(value="execution(* demo1.OrderDao.save(..))") public Object around(ProceedingJoinPoint joinPoint) throws Throwable{ System.out.println("before"); Object obj=joinPoint.proceed(); System.out.println("after"); return obj; }
@AfterThrowing(value="execution(* demo1.OrderDao.save(..))",throwing="e") public void afterThrowing(Throwable e){ System.out.println("exception:"+e.getMessage(); }
@After(value="execution(* demo1.OrderDao.save(..))") public void after(){ System.out.println("finally"); }
@PointCut(value="execution(* demo1.OrderDao.save(..))")
private void pointcut1(){}
此時,在上述通知的註解中,value能夠替換爲該函數名,例如:
@After(value="MyAspect.pointcut1()") public void after(){ System.out.println("finally"); }
這個註解的好處是,只須要維護切入點便可,不用在修改時修改每一個註解。
Spring 對持久層也提供瞭解決方案,也就是 ORM 模塊和 JDBC 的模板。針對 JDBC ,提供了 org.springframework.jdbc.core.JdbcTemplate 做爲模板類。
public void demo1(){ //建立鏈接池 DriverManagerDataSource dataSource=new DriverManagerDataSource(); dataSource.setDriverClassName("com.mysql.jdbc.Driver"); dataSource.setUrl("jdbc:mysql:///spring4"); dataSource.setUsername("root"); dataSource.setPassword("123456"); //建立JDBC模板 JdbcTemplate jdbcTemplate=new JdbcTemplate(dataSource); jdbcTemplate.update("insert into account values (null,?,?)", "xiaoming",1000d); }
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource;"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property name="url" value="jdbc:mysql:///spring4"></property> <property name="username" value="root"></property> <property name="password" value="123456"></property> </bean> <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate;"> <property name="dataSource" ref="dataSource"></property> </bean>
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class JdbcDemo2 { @Resource(name="jdbcTemplate") private JdbcTemplate jdbcTemplate; @Test public void demo2(){ jdbcTemplate.update("insert into account values (null,?,?)", "xiaolan",1000d); } }
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property name="url" value="jdbc:mysql://192.168.66.128/spring4"></property> <property name="username" value="root"></property> <property name="password" value="123456"></property>
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="driverClass" value="com.mysql.jdbc.Driver"></property> <property name="jdbcUrl" value="jdbc:mysql://192.168.66.128/spring4"></property> <property name="user" value="root"></property> <property name="password" value="123456"></property> </bean>
首先創建外部屬性文件:
jdbc.driverClass=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://192.168.66.128/spring4 jdbc.username=root jdbc.password=123456
而後對屬性文件進行配置:
<context:property-placeholder location="classpath:jdbc.properties"/> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="driverClass" value="${jdbc.driverClass}"></property> <property name="jdbcUrl" value="${jdbc.url}"></property> <property name="user" value="${jdbc.username}"></property> <property name="password" value="${jdbc.password}"></property> </bean>
insert, update, delete 語句都藉助模板的 update 方法進行操做。
public void demo(){ jdbcTemplate.update("insert into account values (null,?,?)", "xiaoda",1000d); jdbcTemplate.update("update account set name=?,money=? where id=?", "xiaoda",1000d,2); jdbcTemplate.update("delete from account where id=?", 6); }
查詢操做:
public void demo3(){ String name=jdbcTemplate.queryForObject("select name from account where id=?",String.class,5); long count=jdbcTemplate.queryForObject("select count(*) from account",Long.class); }
將返回的結果封裝成爲類:
public void demo4(){ Account account=jdbcTemplate.queryForObject("select * from account where id=?", new MyRowMapper(),5); }
其中:
class MyRowMapper implements RowMapper<Account>{ @Override public Account mapRow(ResultSet rs, int rowNum) throws SQLException { Account account=new Account(); account.setId(rs.getInt("id")); account.setName(rs.getString("name")); account.setMoney(rs.getDouble("money")); return account; } }
事務是指邏輯上的一組操做,組成這組操做的各個單元,要麼所有成功,要麼所有失敗。
具備四個特性:
若是不考慮隔離性會引起安全性問題:
解決讀問題:設置事務隔離級別
這是一個接口,擁有多個不一樣的實現類,如 DataSourceTransactionManager 底層使用了JDBC 管理事務; HibernateTransactionManager 底層使用了 Hibernate 管理事務。
用於定義事務的相關信息,如隔離級別、超時信息、傳播行爲、是否只讀等
用於記錄在事務管理過程當中,事務的狀態的對象。
上述API的關係: Spring 在進行事務管理的時候,首先平臺事務管理器根據事務定義信息進行事務管理,在事務管理過程中,產生各類此狀態,將這些狀態信息記錄到事務狀態的對象當中。
事務的傳播行爲主要解決業務層(Service)方法相互調用的問題,也就是不一樣的業務中存在不一樣的事務時,如何操做。
Spring 中提供了7種事務的傳播行爲,分爲三類:
以轉帳爲例,業務層的DAO層類以下:
public interface AccountDao { public void outMoney(String from,Double money); public void inMoney(String to,Double money); } public class AccountDaoImpl extends JdbcDaoSupport implements AccountDao{ @Override public void outMoney(String from, Double money) { this.getJdbcTemplate().update("update account set money = money - ? where name = ?",money,from); } @Override public void inMoney(String to, Double money) { this.getJdbcTemplate().update("update account set money = money + ? where name = ?",money,to); } } public interface AccountService { public void transfer(String from,String to,Double money); } public class AccountServiceImpl implements AccountService { private AccountDao accountDao; public void setAccountDao(AccountDao accountDao) { this.accountDao = accountDao; } @Override public void transfer(String from, String to, Double money) { accountDao.outMoney(from, money); accountDao.inMoney(to, money); } }
在xml中進行類的配置:
<bean id="accountService" class="tx.demo.AccountServiceImpl"> <property name="accountDao" ref="accountDao"/> </bean> <bean id="accountDao" class="tx.demo.AccountDaoImpl"> <property name="dataSource" ref="dataSource"/> </bean>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean>
<bean id="transactionTemplate" class="org.springframework.transaction.support.TransactionTemplate"> <property name="transactionManager" ref="transactionManager"></property> </bean>
<bean id="accountService" class="tx.demo1.AccountServiceImpl"> <property name="accountDao" ref="accountDao"/> <property name="transactionTemplate" ref="transactionTemplate"/> </bean>
//ServiceImpl類中: private TransactionTemplate transactionTemplate; @Override public void transfer(String from, String to, Double money) { transactionTemplate.execute(new TransactionCallbackWithoutResult() { @Override protected void doInTransactionWithoutResult(TransactionStatus arg0) { accountDao.outMoney(from, money); accountDao.inMoney(to, money); } }); }
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean>
<tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="transfer" propagation="REQUIRED"/> </tx:attributes> </tx:advice>
<aop:config> <aop:pointcut expression="execution(* tx.demo2.AccountServiceImpl.*(..))" id="pointcut1"/> <aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut1"/> </aop:config>
<tx:annotation-driven transaction-manager="transactionManager"/>
若是以爲文章不錯歡迎你們收藏點個關注喲。
若是你對技術提高很感興趣,歡迎1~5年的工程師能夠加入個人Java進階之路來交流學習:908676731。裏面都是同行,有資源共享,還有大量面試題以及解析。歡迎一到五年的工程師加入,合理利用本身每一分每一秒的時間來學習提高本身,不要再用"沒有時間「來掩飾本身思想上的懶惰!趁年輕,使勁拼,給將來的本身一個交代!