spring 优越性实践
生活随笔
收集整理的這篇文章主要介紹了
spring 优越性实践
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
public class OrderServiceTest {public static void main(String[] args) {// OrderServiceImpl order = new OrderServiceImpl();// 1最常見創建實例// PaymentService weixin = new WeiXinPaymentServiceImpl();// 2自定義的方式-反射創建實例
// String payPath = "com.payment.impl.WeiXinPaymentServiceImpl";
// PaymentService pay = Class.forName(payPath);
// order.setPaymentService(pay);// 3spring注入// 通過文件路徑來獲取ApplicationContext ac = new FileSystemXmlApplicationContext("src/applicationContext.xml");OrderServiceImpl orderSe;orderSe = (OrderServiceImpl)ac.getBean("orderService");PaymentService s1 = (PaymentService) ac.getBean("paymentService");System.out.println(orderSe.pay());}
總結
以上是生活随笔為你收集整理的spring 优越性实践的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Oracle9在Windows7下的安装
- 下一篇: 【算法刷题3】二叉树的最大深度