Spring 總結(jié) - IOC 與 Bean 裝配

  • 從大小、開銷兩方面而言荠瘪,Spring 都是輕量級(jí)的夯巷;
  • 通過控制反轉(zhuǎn)技術(shù)(IOC)達(dá)到松耦合;
  • 通過面向切面編程(AOP)實(shí)現(xiàn)業(yè)務(wù)邏輯和系統(tǒng)級(jí)服務(wù)的分離哀墓;
  • 作為容器包含和管理應(yīng)用對(duì)象的配置和生命周期趁餐;
  • 將簡單的組件配置組合成復(fù)雜的應(yīng)用。

官網(wǎng)

框架

  • 半成品篮绰,定制規(guī)范后雷;
  • 封裝了特定的處理流程和控制邏輯,是高內(nèi)聚的(而類庫是松散的工具組合)吠各;
  • 提高代碼重用度臀突、開發(fā)效率和質(zhì)量,易于上手贾漏、快速解決問題候学。

控制反轉(zhuǎn)(IOC)

  • 控制反轉(zhuǎn)即獲得依賴對(duì)象的過程被反轉(zhuǎn);控制權(quán)的轉(zhuǎn)移纵散,應(yīng)用程序本身不負(fù)責(zé)對(duì)象的創(chuàng)建和維護(hù)梳码,而是由外部容器負(fù)責(zé)創(chuàng)建和維護(hù)隐圾;
  • 依賴注入:IOC 的一種實(shí)現(xiàn),創(chuàng)建對(duì)象并組裝對(duì)象之間的關(guān)系掰茶,由 IOC 容器(中介)在運(yùn)行期間動(dòng)態(tài)地將某種依賴關(guān)系注入到對(duì)象中并返回暇藏。

面向接口編程

  • 接口:用于溝通的中介物的抽象化(提供功能方法的聲明);
  • 面向接口編程
    1. 系統(tǒng)設(shè)計(jì)中濒蒋,分清層次和調(diào)用關(guān)系叨咖,每層只向上層提供功能接口,層間僅依賴接口而非實(shí)現(xiàn)類啊胶;
    2. 接口實(shí)現(xiàn)的變動(dòng)不影響各層間的調(diào)用(在公共服務(wù)中尤其重要)。

接口與實(shí)現(xiàn)類的使用

public interface OneInterface {
    public void say(String arg);
}

public class OneInterfaceImpl implements OneInterface {
    public void say(String arg) {
        System.out.println("ServiceImpl say: " + arg);
    }
}

依賴注入的實(shí)現(xiàn)

  • 基于注解
  • 基于 XML 配置文件
Bean 容器的初始化

配置文件 spring-ioc.xml

<?xml version="1.0" encoding="UTF-8"?>
<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="oneInterface" class="com.imooc.ioc.interfaces.OneInterfaceImpl"></bean>
 </beans>

測試基類:用于對(duì) Spring 配置文件的加載垛贤、銷毀

public class UnitTestBase {

    private ClassPathXmlApplicationContext context;

    private String springXmlpath;

    public UnitTestBase() {}

    public UnitTestBase(String springXmlpath) {
        this.springXmlpath = springXmlpath;
    }

    @Before
    public void before() {
        if (StringUtils.isEmpty(springXmlpath)) {
            springXmlpath = "classpath*:spring-*.xml";
        }
        try {
            context = new ClassPathXmlApplicationContext(springXmlpath.split("[,\\s]+"));
            context.start();
        } catch (BeansException e) {
            e.printStackTrace();
        }
    }

    @After
    public void after() {
        context.destroy();
    }

    @SuppressWarnings("unchecked")
    protected <T extends Object> T getBean(String beanId) {
        try {
            return (T) context.getBean(beanId);
        } catch (BeansException e) {
            e.printStackTrace();
            return null;
        }
    }

    protected <T extends Object> T getBean(Class<T> clazz) {
        try {
            return context.getBean(clazz);
        } catch (BeansException e) {
            e.printStackTrace();
            return null;
        }
    }

}

注入測試

@RunWith(BlockJUnit4ClassRunner.class)
public class TestOneInterface extends UnitTestBase {
    public TestOneInterface() {
        super("classpath*:spring-ioc.xml");
    }
    @Test
    public void testSay() {
        OneInterface oneInterface = super.getBean("oneInterface");
        oneInterface.say("This is a test.");
    }
}

Spring 注入方式

  • 啟動(dòng) Spring 容器加載 Bean 配置的時(shí)候焰坪,完成對(duì)變量的賦值行為;
  • 常用的注入方式:設(shè)值注入(自動(dòng)調(diào)用 Setter 方法對(duì)屬性賦值)聘惦、構(gòu)造注入(通過構(gòu)造器傳入 bean)某饰。
<!-- Service 層設(shè)值注入 -->
<bean id="injectionService" class="com.imooc.ioc.injection.service.InjectionServiceImpl"> 
    <property name="injectionDAO" ref="injectionDAO"></property> 
</bean> 

<!-- Service 層構(gòu)造注入 -->
<bean id="injectionService" class="com.imooc.ioc.injection.service.InjectionServiceImpl">
    <constructor-arg name="injectionDAO" ref="injectionDAO"></constructor-arg>    <!-- 在構(gòu)造方法中傳入 injectionDAO,注意參數(shù)名稱必須一致 -->
</bean>

<!-- DAO 層 -->
<bean id="injectionDAO" class="com.imooc.ioc.injection.dao.InjectionDAOImpl"></bean>    <!-- 作為 injectionService 對(duì)象的成員變量 -->

Bean 裝配(基于 XML 配置文件)

配置項(xiàng)

Spring IOC Bean 容器中常用到以下配置項(xiàng)善绎,其中 class 是必須的:

  • id
  • class
  • scope
  • constructor arguments
  • properties
  • autowiring mode
  • lazy-initialization mode
  • initializa/destruction method

作用域

  • singleton:Bean 容器中(context = new ClassPathXmlApplicationContext(xxx))唯一(注意對(duì)一個(gè)類進(jìn)行單元測試時(shí)每個(gè)方法都是不同的 IOC 容器)黔漂;
  • prototype:每次請(qǐng)求(使用)創(chuàng)建新的實(shí)例,由 destroy 銷毀禀酱;
  • request:每次 http 請(qǐng)求創(chuàng)建要給實(shí)例且僅在當(dāng)前 request 中生效炬守;
  • session:每次 http 請(qǐng)求創(chuàng)建,當(dāng)前 Session 內(nèi)有效剂跟;
  • global session:常用于多系統(tǒng)集成减途,基于 portlet 的 web 中有效(portlet 定義了 global session),如果是在 Web 中則與 session 相同曹洽。

生命周期

  • 定義:在 XML 配置文件中定義(見前面)
  • 初始化 :實(shí)現(xiàn) org.springframework.beans.factory.InitializingBean 接口鳍置,并覆蓋 afterPropertiesSet 方法;或配置 init-method送淆;
  • 使用 税产;
  • 銷毀:與初始化類似,實(shí)現(xiàn) org.springframework.beans.factory.DisposableBean 接口偷崩,并覆蓋 destroy 方法屡拨,用于釋放連接池等清理操作僚害。

配置全局默認(rèn)初始化、銷毀方法(自己配置的 init-method 和 destroy-method 會(huì)覆蓋)

<?xml version="1.0" encoding="UTF-8"?>
<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" 
        default-init-method="defautInit" default-destroy-method="defaultDestroy">
    <bean id="beanLifeCycle" class="com.imooc.lifecycle.BeanLifeCycle"  init-method="start" destroy-method="stop"></bean>
 </beans>
public class BeanLifeCycle implements InitializingBean, DisposableBean {
    public void defautInit() {
        System.out.println("Bean defautInit.");
    }
    public void defaultDestroy() {
        System.out.println("Bean defaultDestroy.");
    }
    @Override
    public void destroy() throws Exception {
        System.out.println("Bean destroy.");
    }
    @Override
    public void afterPropertiesSet() throws Exception {
        System.out.println("Bean afterPropertiesSet.");
    }
    public void start() {
        System.out.println("Bean start .");
    }
    public void stop() {
        System.out.println("Bean stop.");
    }
}

Aware

  • Spring 中提供以 Aware 結(jié)尾的接口,可用于獲取相應(yīng)的資源卖宠、執(zhí)行一定操作;
  • 為對(duì) Spring 進(jìn)行簡單的擴(kuò)展提供了方便的入口抡锈。

常用接口:

  • MessageSourceAware
  • NotificationPublisherAware
  • PortletConfitAware
  • PortletContextAware
  • ResourceLoaderAware
  • ServletConfigAware
  • ServletContextAware

實(shí)現(xiàn) BeanNameAware 接口

public class MoocBeanName implements BeanNameAware, ApplicationContextAware {
    private String beanName;
    @Override
    public void setBeanName(String name) {
        this.beanName = name;
        System.out.println("MoocBeanName : " + name);
    }
    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        System.out.println("setApplicationContext : " + applicationContext.getBean(this.beanName).hashCode());
    }
}

測試

@Test
public void textMoocBeanName() {
    System.out.println("textMoocBeanName : " + super.getBean("moocBeanName").hashCode());
}

自動(dòng)裝配

  • 前面講到 Spring 的注入時(shí)設(shè)置注入和構(gòu)造注入都需要在 XML 配置文件怜珍、<bean> 配置項(xiàng)中聲明渡紫;
  • 使用自動(dòng)裝配,可以根據(jù) Bean 的名稱考赛、類型惕澎、構(gòu)造器等自動(dòng)解決依賴關(guān)系,有以下實(shí)現(xiàn)方式:


spring-autowiring.xml

<?xml version="1.0" encoding="UTF-8"?>
<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" 
        default-autowire="constructor">
    <bean id="autoWiringService" class="com.imooc.autowiring.AutoWiringService" ></bean>
    <bean class="com.imooc.autowiring.AutoWiringDAO" ></bean>
 </beans>

AutoWiringDAO.java

public class AutoWiringDAO {
    public void say(String word) {
        System.out.println("AutoWiringDAO : " + word);
    }
}

AutoWiringService.java

public class AutoWiringService {
    private AutoWiringDAO autoWiringDAO;
    public AutoWiringService(AutoWiringDAO autoWiringDAO) {
        System.out.println("AutoWiringService");
        this.autoWiringDAO = autoWiringDAO;
    }
    public void setAutoWiringDAO(AutoWiringDAO autoWiringDAO) {
        System.out.println("setAutoWiringDAO");
        this.autoWiringDAO = autoWiringDAO;
    }
    public void say(String word) {
        this.autoWiringDAO.say(word);
    }
}

TestAutoWiring.java

@RunWith(BlockJUnit4ClassRunner.class)
public class TestAutoWiring extends UnitTestBase {
    public TestAutoWiring() {
        super("classpath:spring-autowiring.xml");
    }
    @Test
    public void testSay() {
        AutoWiringService service = super.getBean("autoWiringService");
        service.say(" this is a test");
    }
}

Resources

針對(duì)于資源文件的統(tǒng)一接口


ResoueceLoader
public class MoocResource implements ApplicationContextAware  {
    private ApplicationContext applicationContext;
    
    @Override
    public void setApplicationContext(ApplicationContext applicationContext)
            throws BeansException {
        this.applicationContext = applicationContext;
    }
    public void resource() throws IOException {
        Resource resource = applicationContext.getResource("config.txt");
        System.out.println(resource.getFilename());
        System.out.println(resource.contentLength());
    }
}
@RunWith(BlockJUnit4ClassRunner.class)
public class TestResource extends UnitTestBase {
    public TestResource() {
        super("classpath:spring-resource.xml");
    }
    @Test
    public void testResource() {
        MoocResource resource = super.getBean("moocResource");
        try {
            resource.resource();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

Bean 裝配(基于注解)

spring-beanannotation.xml

<?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"
    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" >
    <context:component-scan base-package="com.imooc.beanannotation"></context:component-scan>
 </beans>

BeanAnnotation.java

@Scope
@Component
public class BeanAnnotation {
    public void say(String arg) {
        System.out.println("BeanAnnotation : " + arg);
    }
    public void myHashCode() {
        System.out.println("BeanAnnotation : " + this.hashCode());
    }
}

測試

@RunWith(BlockJUnit4ClassRunner.class)
public class TestBeanAnnotation extends UnitTestBase {
    public TestBeanAnnotation() {
        super("classpath*:spring-beanannotation.xml");
    }
    @Test
    public void testSay() {
        BeanAnnotation bean = super.getBean("beanAnnotation");
        bean.say("This is test.");
        bean = super.getBean("bean");
        bean.say("This is test.");
    }
    @Test
    public void testScpoe() {
        BeanAnnotation bean = super.getBean("beanAnnotation");
        bean.myHashCode();
        bean = super.getBean("beanAnnotation");
        bean.myHashCode();
    }
}

Bean 的定義



其中注解中的參數(shù)表示 Bean 在容器中的 Id颜骤,默認(rèn)為類名(首字母改為小寫)唧喉。


Classpath 掃描與組件管理:@Component@Repository忍抽、@Service八孝、@Controller


元注解:@Target@Retention鸠项、@Documented


類的自動(dòng)檢測及 Bean 的注冊(cè)



使用 component-scan 可以掃描加上了 @Component 注解(及其子注解)的類干跛,在 base-package 上配置需要掃描的包,包括了 annotation-config 的功能祟绊。


使用過濾器進(jìn)行自定義掃描

作用域:@Scope


代理方式



常用注解說明

@Required

@Autowired



public interface InjectionService { 
    public void save(String arg);
}

@Service
public class InjectionServiceImpl implements InjectionService {
    
//  @Autowired
    private InjectionDAO injectionDAO;
    
    @Autowired
    public InjectionServiceImpl(InjectionDAO injectionDAO) {
        this.injectionDAO = injectionDAO;
    }
    
//  @Autowired
    public void setInjectionDAO(InjectionDAO injectionDAO) {
        this.injectionDAO = injectionDAO;
    }
    
    public void save(String arg) {
        System.out.println("Service接收參數(shù):" + arg);
        arg = arg + ":" + this.hashCode();
        injectionDAO.save(arg);
    }
}

@RunWith(BlockJUnit4ClassRunner.class)
public class TestInjection extends UnitTestBase {
    
    public TestInjection() {
        super("classpath:spring-injection.xml");
    }
    @Test
    public void testSetter() {
        InjectionService service = super.getBean("injectionService");
        service.save("這是要保存的數(shù)據(jù)");
    }
    @Test
    public void testCons() {
        InjectionService service = super.getBean("injectionService");
        service.save("這是要保存的數(shù)據(jù)");
    }
}
public interface BeanInterface {}

@Order(2)
@Component
public class BeanImplOne implements BeanInterface {}

@Order(1)
@Component
public class BeanImplTwo implements BeanInterface {}

@Component
public class BeanInvoker {
    
    @Autowired
    private List<BeanInterface> list;
    
    @Autowired
    private Map<String, BeanInterface> map;
    
    @Autowired
    @Qualifier("beanImplTwo")
    private BeanInterface beanInterface;
    
    public void say() {
        if (null != list && 0 != list.size()) {
            System.out.println("list...");
            for (BeanInterface bean : list) {
                System.out.println(bean.getClass().getName());
            }
        } else {
            System.out.println("List<BeanInterface> list is null !!!!!!!!!!");
        }
        System.out.println();
        if (null != map && 0 != map.size()) {
            System.out.println("map...");
            for (Map.Entry<String, BeanInterface> entry : map.entrySet()) {
                System.out.println(entry.getKey() + "      " + entry.getValue().getClass().getName());
            }
        } else {
            System.out.println("Map<String, BeanInterface> map is null !!!!!!!!!!");
        }
        System.out.println();
        if (null != beanInterface) {
            System.out.println(beanInterface.getClass().getName());
        } else {
            System.out.println("beanInterface is null...");
        }
    }
}

@Qualifier




@Bean - 基于 Java 容器的注解


使用 @Bean 注解楼入,Bean 的名稱默認(rèn)是方法的名稱。

@Configuration
@ImportResource("classpath:config.xml")
public class StoreConfig {
    
//  @Value("${url}")
//  private String url;
//  
//  @Value("${jdbc.username}")
//  private String username;
//  
//  @Value("${password}")
//  private String password;
//  
//  @Bean
//  public MyDriverManager myDriverManager() {
//      return new MyDriverManager(url, username, password);
//  }
    
    
//  @Bean(name = "stringStore", initMethod="init", destroyMethod="destroy")
//  public Store stringStore() {
//      return new StringStore();
//  }
    
    
//  @Bean(name = "stringStore")
//  @Scope(value="prototype", proxyMode = ScopedProxyMode.TARGET_CLASS)
//  public Store stringStore() {
//      return new StringStore();
//  }
    
    @Autowired
    private Store<String> s1;
    
    @Autowired
    private Store<Integer> s2;
    
    @Bean
    public StringStore stringStore() {
        return new StringStore();
    }
    
    @Bean
    public IntegerStore integerStore() {
        return new IntegerStore();
    }
    
//  @Bean(name = "stringStoreTest")
//  public Store stringStoreTest() {
//      System.out.println("s1 : " + s1.getClass().getName());
//      System.out.println("s2 : " + s2.getClass().getName());
//      return new StringStore();
//  }
}

public class StringStore implements Store<String> {
    public void init() {
        System.out.println("This is init.");
    }
    public void destroy() {
        System.out.println("This is destroy.");
    }
}


@RunWith(BlockJUnit4ClassRunner.class)
public class TestJavabased extends UnitTestBase {
    
    public TestJavabased() {
        super("classpath*:spring-beanannotation.xml");
    }
    @Test
    public void test() {
        Store store = super.getBean("stringStore");
        System.out.println(store.getClass().getName());
    }
    @Test
    public void testMyDriverManager() {
        MyDriverManager manager = super.getBean("myDriverManager");
        System.out.println(manager.getClass().getName());
    }
    @Test
    public void testScope() {
        Store store = super.getBean("stringStore");
        System.out.println(store.hashCode());
        
        store = super.getBean("stringStore");
        System.out.println(store.hashCode());
    }
    @Test
    public void testG() {
        StringStore store = super.getBean("stringStoreTest");
    }
}

面向切面編程

面向切面編程(AOP)是分離應(yīng)用的業(yè)務(wù)邏輯和系統(tǒng)級(jí)服務(wù)進(jìn)行內(nèi)聚性的開發(fā)牧抽。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末嘉熊,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子扬舒,更是在濱河造成了極大的恐慌阐肤,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件呼巴,死亡現(xiàn)場離奇詭異泽腮,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)衣赶,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門诊赊,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人府瞄,你說我怎么就攤上這事碧磅。” “怎么了遵馆?”我有些...
    開封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵鲸郊,是天一觀的道長。 經(jīng)常有香客問我货邓,道長秆撮,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任换况,我火速辦了婚禮职辨,結(jié)果婚禮上盗蟆,老公的妹妹穿的比我還像新娘。我一直安慰自己舒裤,他們只是感情好喳资,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著腾供,像睡著了一般仆邓。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上伴鳖,一...
    開封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天节值,我揣著相機(jī)與錄音,去河邊找鬼榜聂。 笑死察署,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的峻汉。 我是一名探鬼主播,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼脐往,長吁一口氣:“原來是場噩夢啊……” “哼休吠!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起业簿,我...
    開封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤瘤礁,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后梅尤,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體柜思,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年巷燥,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了赡盘。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡缰揪,死狀恐怖陨享,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情钝腺,我是刑警寧澤抛姑,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布,位于F島的核電站艳狐,受9級(jí)特大地震影響定硝,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜毫目,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一蔬啡、第九天 我趴在偏房一處隱蔽的房頂上張望诲侮。 院中可真熱鬧,春花似錦星爪、人聲如沸浆西。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽近零。三九已至,卻和暖如春抄肖,著一層夾襖步出監(jiān)牢的瞬間久信,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來泰國打工漓摩, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留裙士,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓管毙,卻偏偏與公主長得像腿椎,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子夭咬,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345