spring IOC之注解

注解配置和xml配置要實現的功能都是一樣的抖坪,都是要降低程序間的耦合壹蔓。只是配置的形式不一樣匠襟。

1.開發(fā)環(huán)境搭建

  • 拷貝jar包到工程
所需jar包
  • 在類的根路徑下創(chuàng)建一個任意名稱的xml文件(不能是中文)
    給配置文件導入約束
    約束在spring-framework-4.2.4.RELEASE\docs\spring-framework-reference\html\xsd-configuration.html目錄下的
約束

bean.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">
    
</beans>

然后就可以開始使用注解了

2.常用注解

①用于創(chuàng)建bean對象

  • @Component
    作用:相當于配置了一個bean標簽
    出現的位置:類上面
    屬性:value家夺。value的值是指定bean的id脱柱,當不寫,默認值是當前類的短名首字母改小寫

還是CustomerServiceImpl.java類

package com.edu.services.Impl;

import com.edu.services.ICustomerService;
import org.springframework.stereotype.Component;


@Component(value = "customerServiceImpl")
public class CustomerServiceImpl implements ICustomerService {

    @Override
    public void saveCustomer() {
        System.out.println("執(zhí)行了保存用戶");
    }
}

配置bean.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">

<!-- 告知spring框架在拉馋,讀取配置文件榨为,創(chuàng)建容器時,掃描注解煌茴,依據注解創(chuàng)建對象随闺,并存入容器中 -->
    <context:component-scan base-package="com.edu"></context:component-scan>

</beans>

用client.java測試

package com.edu.ui;

import com.edu.services.ICustomerService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Client {
    public static void main(String[] args){

        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        ICustomerService cs = (ICustomerService) ac.getBean("customerServiceImpl");
        cs.saveCustomer();
    }
}
運行結果
  • @Component注解衍生了一下三個注解,他們的作用及屬性都是一模一樣的蔓腐。
    • @Controller
      一般用于表現層的注解矩乐。
    • @Service
      一般用于業(yè)務層的注解。
    • @Repository
      一般用于持久層的注解合住。

②用于注入數據

  • @Autowired
    作用:自動按照類型注入绰精。當使用注解注入屬性時,set方法可以省略透葛。它只能注入其他bean類型笨使。當有多個類型匹配時,使用要注入的對象變量名稱作為bean的id僚害,在spring容器查找硫椰,找到了也可以注入成功。找不到就報錯萨蚕。

CustomerServiceImpl.java

package com.edu.services.Impl;

import com.edu.dao.ICustomerDao;
import com.edu.services.ICustomerService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;


@Service(value = "customerServiceImpl")
public class CustomerServiceImpl implements ICustomerService {

    @Autowired
    private ICustomerDao customerDao = null;

    @Override
    public void saveCustomer() {
        System.out.println("業(yè)務層調用持久層");
        customerDao.saveCustomer();
    }
}
運行結果
  • @Qualifier
    作用:在自動按照類型注入的基礎之上靶草,再按照Bean的id注入。它在給類成員注入時不能獨立使用岳遥,必須和@Autowire一起使用奕翔;但是給方法參數注入時,可以獨立使用浩蓉。
    屬性:value派继,用于指定bean的id
  • @Resource
    作用:直接按照bean的id注入
    屬性:name宾袜,用于指定的bean的id

以上三個注解都是用于注入其他的bean類型的。

  • @Value
    作用:用于注入基本類型和String類型驾窟∏烀ǎ可以借助spring的el表達式讀取properties文件中的配置。
    屬性:value绅络,用于指定要注入的數據月培。

CustomerServiceImpl.java

package com.edu.services.Impl;

import com.edu.dao.ICustomerDao;
import com.edu.services.ICustomerService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;


@Service(value = "customerServiceImpl")
public class CustomerServiceImpl implements ICustomerService {

    @Value("你是豬")
    private String name;

    @Resource(name = "customerDaoImpl")
    private ICustomerDao customerDao = null;

    @Override
    public void saveCustomer() {
        System.out.println("業(yè)務層調用持久層..."+name);
        customerDao.saveCustomer();
    }
}
運行結果

③用于改變作用范圍的

  • @Scope
    作用:指定bean的作用范圍。
    屬性:value恩急,指定范圍的值杉畜。
    value的取值:singleton prototype request session globalsession

Client.java

package com.edu.ui;

import com.edu.services.ICustomerService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Client {
    public static void main(String[] args){

        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        ICustomerService cs = (ICustomerService) ac.getBean("customerServiceImpl");
//        cs.saveCustomer();
        ICustomerService cs1 = (ICustomerService) ac.getBean("customerServiceImpl");
        System.out.println(cs == cs1);
    }
}

沒改scope之前

運行結果

CustomerServiceImpl.java

package com.edu.services.Impl;

import com.edu.dao.ICustomerDao;
import com.edu.services.ICustomerService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;


@Service(value = "customerServiceImpl")
@Scope("prototype")
public class CustomerServiceImpl implements ICustomerService {

    @Value("你是豬")
    private String name;

    @Resource(name = "customerDaoImpl")
    private ICustomerDao customerDao = null;

    @Override
    public void saveCustomer() {
        System.out.println("業(yè)務層調用持久層..."+name);
        customerDao.saveCustomer();
    }
}
更改scope之后

IOC的注解已經完了,但是我們發(fā)現假栓,即使有spring的注解寻行,也依舊離不開xml配置文件,那么可不可以用注解代替xml配置文件呢匾荆,這就是spring的新注解拌蜘。

3.spring的純注解配置

  • 項目工程目錄
工程結構
  • 用SpringConfiguration.java代替bean.xml
package com.edu.config;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration//表明當前類是一個配置類
@ComponentScan(basePackages = "com.edu")//配置要掃描的包
public class SpringConfiguration {
}
  • 測試類的Client.java就不能用bean.xml了
package com.edu.ui;

import com.edu.config.SpringConfiguration;
import com.edu.services.ICustomerService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Client {
    public static void main(String[] args) {
        //1.獲取容器:由于我們已經沒有了xml文件,所以再用讀取xml方式就不能用了牙丽。
        //這時需要指定加載哪個類上的注解
        ApplicationContext ac = new AnnotationConfigApplicationContext(SpringConfiguration.class);
        //2.根據bean的id獲取對象
        ICustomerService cs = (ICustomerService) ac.getBean("customerService");
        cs.saveCustomer();
    }
}
運行結果

新注解說明

  • @Configuration
    作用:
    用于指定當前類是一個spring配置類简卧,當創(chuàng)建容器時會從該類上加載注解。獲取容器時需要使用AnnotationApplicationContext(有@Configuration注解的類.class)烤芦。
    屬性:
    value:用于指定配置類的字節(jié)碼

  • @ComponentScan
    作用:
    用于指定spring在初始化容器時要掃描的包举娩。
    和xml配置文件中的<context:component-scan base-package="com.itheima"/>作用一樣
    屬性:
    basePackages:用于指定要掃描的包。和該注解中的value屬性作用一樣构罗。

  • @PropertySource
    作用:
    用于加載.properties文件中的配置铜涉。例如我們配置數據源時,可以把連接數據庫的信息寫到properties配置文件中遂唧,就可以使用此注解指定properties配置文件的位置芙代。
    屬性:
    value[]:用于指定properties文件位置。如果是在類路徑下盖彭,需要寫上classpath:

  • @Import
    作用:
    用于導入其他配置類纹烹,在引入其他配置類時,可以不用再寫@Configuration注解召边。當然铺呵,寫上也沒問題。
    屬性:
    value[]:用于指定其他配置類的字節(jié)碼隧熙。

  • @Bean
    作用:
    該注解只能寫在方法上片挂,表明使用此方法創(chuàng)建一個對象,并且放入spring容器贞盯。它就相當于我們之前在xml配置中介紹的factory-beanfactory-method宴卖。
    屬性:
    name:給當前@Bean注解方法創(chuàng)建的對象指定一個名稱(即bean的id)滋将。

運用新注解:

運用純注解對customer進行增刪改查

數據庫結構
項目目錄結構
需要的jar包

SpringConfiguration.java

package config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;

/**
 * 一個spring的配置類
 *  它的作用就相當于bean.xml
 * @author zhy
 */
@Configuration//它就是把當前類看成是spring的配置類
@ComponentScan({"com.itheima"})
@Import({JdbcConfig.class})//導入其他配置類
@PropertySource("classpath:config/jdbcConfig.properties")
public class SpringConfiguration {
    
    @Bean
    public static PropertySourcesPlaceholderConfigurer createPropertySourcesPlaceholderConfigurer(){
        return  new PropertySourcesPlaceholderConfigurer();
    }
}

JdbcConfig.java

package config;

import javax.sql.DataSource;

import org.apache.commons.dbutils.QueryRunner;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;

import com.mchange.v2.c3p0.ComboPooledDataSource;

/**
 * Jdbc的配置類
 * @author zhy
 *
 */
public class JdbcConfig {
    
    @Value("${jdbc.driver}")
    private String driver;
    
    @Value("${jdbc.url}")
    private String url;
    
    @Value("${jdbc.username}")
    private String username;
    
    @Value("${jdbc.password}")
    private String password;

    @Bean(name="runner")//它是把方法的返回值存入spring容器中。該注解有一個屬性症昏,name:用于指定bean的id。當不指定時它有默認值父丰,默認值是方法的名稱肝谭。
    public QueryRunner createQueryRunner(@Qualifier("ds1")DataSource dataSource){
        return new QueryRunner(dataSource);
    }
    
    @Bean(name="ds")
    public DataSource createDataSource(){
        try {
            System.out.println(driver);//com.mysql.jdbc.Driver  
            ComboPooledDataSource ds = new ComboPooledDataSource();
            ds.setDriverClass(driver);
            ds.setJdbcUrl(url);
            ds.setUser(username);
            ds.setPassword(password);
            return ds;
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
    
    @Bean(name="ds1")
    public DataSource createDataSource1(){
        try {
            System.out.println(url);
            ComboPooledDataSource ds = new ComboPooledDataSource();
            ds.setDriverClass(driver);
            ds.setJdbcUrl(url);
            ds.setUser(username);
            ds.setPassword(password);
            return ds;
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

jdbcConfig.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/customer
jdbc.username=root
jdbc.password=root

Customer.java

package com.edu.domain;

import java.io.Serializable;

/**
 * 客戶的實體類
 * 我們使用DBUtils來操作。
 * 它的使用要求蛾扇,實體類中的屬性和數據庫的字段必須一致
 * @author zhy
 * 
 */
public class Customer implements Serializable {

    private Long cust_id;
    private String cust_name;
    private String cust_source;
    private String cust_industry;
    private String cust_level;
    private String cust_address;
    private String cust_phone;
    public Long getCust_id() {
        return cust_id;
    }
    public void setCust_id(Long cust_id) {
        this.cust_id = cust_id;
    }
    public String getCust_name() {
        return cust_name;
    }
    public void setCust_name(String cust_name) {
        this.cust_name = cust_name;
    }
    public String getCust_source() {
        return cust_source;
    }
    public void setCust_source(String cust_source) {
        this.cust_source = cust_source;
    }
    public String getCust_industry() {
        return cust_industry;
    }
    public void setCust_industry(String cust_industry) {
        this.cust_industry = cust_industry;
    }
    public String getCust_level() {
        return cust_level;
    }
    public void setCust_level(String cust_level) {
        this.cust_level = cust_level;
    }
    public String getCust_address() {
        return cust_address;
    }
    public void setCust_address(String cust_address) {
        this.cust_address = cust_address;
    }
    public String getCust_phone() {
        return cust_phone;
    }
    public void setCust_phone(String cust_phone) {
        this.cust_phone = cust_phone;
    }
    @Override
    public String toString() {
        return "Customer [cust_id=" + cust_id + ", cust_name=" + cust_name + ", cust_source=" + cust_source
                + ", cust_industry=" + cust_industry + ", cust_level=" + cust_level + ", cust_address=" + cust_address
                + ", cust_phone=" + cust_phone + "]";
    }   
}

ICustomerService.java

package com.edu.service;

import java.util.List;

import com.edu.domain.Customer;

/**
 * 客戶的業(yè)務層接口
 * @author zhy
 *
 */
public interface ICustomerService {
    
    /**
     * 查詢所有客戶
     * @return
     */
    List<Customer> findAllCustomer();
    
    /**
     * 保存客戶
     * @param customer
     */
    void saveCustomer(Customer customer);
    
    /**
     * 更新客戶
     * @param customer
     */
    void updateCustomer(Customer customer);
    
    /**
     * 根據id刪除客戶
     * @param custId
     */
    void deleteCustomer(Long custId);
    
    /**
     * 根據id查詢客戶
     * @param custId
     * @return
     */
    Customer findCustomerById(Long custId);
}

CustomerServiceImpl.java

package com.edu.service.impl;

import java.util.List;

import javax.annotation.Resource;

import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;

import com.edu.dao.ICustomerDao;
import com.edu.domain.Customer;
import com.edu.service.ICustomerService;
/**
 * 客戶的業(yè)務層實現類
 * @author zhy
 *
 */
@Service(value = "customerService")
@Scope("prototype")
public class CustomerServiceImpl implements ICustomerService {

    @Resource(name="customerDao")
    private ICustomerDao customerDao ;
    

    @Override
    public List<Customer> findAllCustomer() {
        return customerDao.findAllCustomer();
    }

    @Override
    public void saveCustomer(Customer customer) {
        customerDao.saveCustomer(customer);
    }

    @Override
    public void updateCustomer(Customer customer) {
        customerDao.updateCustomer(customer);
    }

    @Override
    public void deleteCustomer(Long custId) {
        customerDao.deleteCustomer(custId);
    }

    @Override
    public Customer findCustomerById(Long custId) {
        return customerDao.findCustomerById(custId);
    }

}

ICustomerDao.java

package com.edu.dao;

import java.util.List;

import com.edu.domain.Customer;
/**
 * 客戶的持久層接口
 * @author zhy
 *
 */
public interface ICustomerDao {
    
    /**
     * 查詢所有客戶
     * @return
     */
    List<Customer> findAllCustomer();
    
    /**
     *  保存客戶
     * @param customer
     */
    void saveCustomer(Customer customer);

    /**
     * 更新客戶
     * @param customer
     */
    void updateCustomer(Customer customer);
    
    /**
     * 刪除客戶
     * @param custId
     */
    void deleteCustomer(Long custId);
    
    /**
     * 根據id查詢客戶
     * @param custId
     * @return
     */
    Customer findCustomerById(Long custId);
}

CustomerDaoImpl.java

package com.edu.dao.impl;

import java.sql.SQLException;
import java.util.List;

import javax.annotation.Resource;

import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;
import org.springframework.stereotype.Repository;

import com.edu.dao.ICustomerDao;
import com.edu.domain.Customer;
/**
 * 客戶的持久層實現類
 * @author zhy
 *
 */
@Repository("customerDao")
public class CustomerDaoImpl implements ICustomerDao {

    @Resource(name="runner")
    private QueryRunner runner ;
    

    @Override
    public List<Customer> findAllCustomer() {
        try {
            return runner.query("select * from cst_customer",new BeanListHandler<Customer>(Customer.class));
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public void saveCustomer(Customer customer) {
        try {
            runner.update("insert into cst_customer(cust_name,cust_source,cust_industry,cust_level,cust_address,cust_phone)values(?,?,?,?,?,?)",
                    customer.getCust_name(),customer.getCust_source(),customer.getCust_industry(),
                    customer.getCust_level(),customer.getCust_address(),customer.getCust_phone());
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public void updateCustomer(Customer customer) {
        try {
            runner.update("update cst_customer set cust_name=?,cust_source=?,cust_industry=?,cust_level=?,cust_address=?,cust_phone=?  where cust_id=?",
                    customer.getCust_name(),customer.getCust_source(),customer.getCust_industry(),
                    customer.getCust_level(),customer.getCust_address(),customer.getCust_phone(),customer.getCust_id());
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public void deleteCustomer(Long custId) {
        try {
            runner.update("delete from cst_customer where cust_id = ? ",custId);
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public Customer findCustomerById(Long custId) {
        try {
            return runner.query("select * from cst_customer where cust_id = ? ",new BeanHandler<Customer>(Customer.class),custId);
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
    }
}

CustomerServiceTest.java

package com.edu.test;

import java.util.List;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import com.edu.domain.Customer;
import com.edu.service.ICustomerService;

import config.SpringConfiguration;
/**
 * 測試客戶的業(yè)務層
 * @author zhy
 * spring整合junit
 *  第一步:拷貝spring提供的整合jar包
 *      spring-test-4.2.4.RELEASE.jar
 *  第二步:使用junit提供的一個注解攘烛,把原有的main函數替換掉,換成spring提供的
 *      @RunWith
 *      要換的類:SpringJunit4ClassRunner
 *  第三步:使用spring提供的的注解告知spring镀首,配置文件或者注解類所在的位置
 *      @ContextConfiguration
 *
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes={SpringConfiguration.class})
public class CustomerServiceTest {

    @Autowired
    private ICustomerService cs = null;
    
    @Test
    public void testFindAllCustomer() {
        List<Customer> list = cs.findAllCustomer();
        for(Customer c : list){
            System.out.println(c);
        }
    }

    @Test
    public void testSaveCustomer() {
        Customer c = new Customer();
        c.setCust_name("dbutils customer annotation");
        cs.saveCustomer(c);
    }

    @Test
    public void testUpdateCustomer() {
        Customer c = cs.findCustomerById(94L);
        c.setCust_address("北京市順義區(qū)");
        cs.updateCustomer(c);
    }

    @Test
    public void testDeleteCustomer() {
        cs.deleteCustomer(95L);
    }

    @Test
    public void testFindCustomerById() {
        Customer c = cs.findCustomerById(94L);
        System.out.println(c);
    }

}
運行結果
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末坟漱,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子更哄,更是在濱河造成了極大的恐慌芋齿,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件成翩,死亡現場離奇詭異觅捆,居然都是意外死亡,警方通過查閱死者的電腦和手機麻敌,發(fā)現死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進店門栅炒,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人术羔,你說我怎么就攤上這事赢赊。” “怎么了级历?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵释移,是天一觀的道長。 經常有香客問我鱼喉,道長秀鞭,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任扛禽,我火速辦了婚禮锋边,結果婚禮上,老公的妹妹穿的比我還像新娘编曼。我一直安慰自己豆巨,他們只是感情好,可當我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布掐场。 她就那樣靜靜地躺著往扔,像睡著了一般贩猎。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上萍膛,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天吭服,我揣著相機與錄音,去河邊找鬼蝗罗。 笑死艇棕,一個胖子當著我的面吹牛,可吹牛的內容都是我干的串塑。 我是一名探鬼主播沼琉,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼桩匪!你這毒婦竟也來了打瘪?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤傻昙,失蹤者是張志新(化名)和其女友劉穎闺骚,沒想到半個月后,有當地人在樹林里發(fā)現了一具尸體屋匕,經...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡葛碧,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現自己被綠了过吻。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片进泼。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖纤虽,靈堂內的尸體忽然破棺而出乳绕,到底是詐尸還是另有隱情,我是刑警寧澤逼纸,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布洋措,位于F島的核電站,受9級特大地震影響杰刽,放射性物質發(fā)生泄漏菠发。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一贺嫂、第九天 我趴在偏房一處隱蔽的房頂上張望滓鸠。 院中可真熱鬧,春花似錦第喳、人聲如沸糜俗。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽悠抹。三九已至珠月,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間楔敌,已是汗流浹背啤挎。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留梁丘,地道東北人侵浸。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像氛谜,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子区端,可洞房花燭夜當晚...
    茶點故事閱讀 42,877評論 2 345

推薦閱讀更多精彩內容