MyBatis-01:环境搭建

MyBatis-01:环境搭建
1.搭建实验数据库
CREATE DATABASE mybatis;java

USE mybatis;mysql

DROP TABLE IF EXISTS user;web

CREATE TABLE user (
id int(20) NOT NULL,
name varchar(30) DEFAULT NULL,
pwd varchar(30) DEFAULT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;sql

insert into user(id,name,pwd) values (1,‘狂神’,‘123456’),(2,‘张三’,‘abcdef’),(3,‘李四’,‘987654’);
2.导入 Maven 相关依赖

org.mybatis
mybatis
3.5.2


mysql
mysql-connector-java
5.1.47

3.编写 MyBatis 核心配置文件
能够根据帮助文档来进行编写数据库

<?xml version="1.0" encoding="UTF-8" ?> 4.编写 MyBatis 工具类 import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; import java.io.IOException; import java.io.InputStream;

public class MybatisUtils { apache

private static SqlSessionFactory sqlSessionFactory;session

static {
try {
String resource = “mybatis-config.xml”;
InputStream inputStream = Resources.getResourceAsStream(resource);
sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
} catch (IOException e) {
e.printStackTrace();
}
}mybatis

//获取SqlSession链接
public static SqlSession getSession(){
return sqlSessionFactory.openSession();
}app

}
5.建立实体类
public class User { svg

private int id; //id
private String name; //姓名
private String pwd; //密码

//构造,有参,无参
//set/get
//toString()

}
6.编写 Mapper 接口
import com.kuang.pojo.User;
import java.util.List;

public interface UserMapper {
List selectUser();
}
7.编写 Mapper.xml 配置文件
注意 namespace 不要写错!

<?xml version="1.0" encoding="UTF-8" ?> select * from user 8.编写测试类 Junit 包测试

public class MyTest {
@Test
public void selectUser() {
SqlSession session = MybatisUtils.getSession();
//方法一:
//List users = session.selectList(“com.kuang.mapper.UserMapper.selectUser”);
//方法二:
UserMapper mapper = session.getMapper(UserMapper.class);
List users = mapper.selectUser();

for (User user: users){
       System.out.println(user);
  }
   session.close();

} } 9.运行结果 出现的问题: http://corpus.usx.edu.cn/lyb/detail.asp?id=9712 http://corpus.usx.edu.cn/lyb/detail.asp?id=9713 http://corpus.usx.edu.cn/lyb/detail.asp?id=9714 http://corpus.usx.edu.cn/lyb/detail.asp?id=9715 http://corpus.usx.edu.cn/lyb/detail.asp?id=9716 http://corpus.usx.edu.cn/lyb/detail.asp?id=9717 http://corpus.usx.edu.cn/lyb/detail.asp?id=9718 http://corpus.usx.edu.cn/lyb/detail.asp?id=9719 http://corpus.usx.edu.cn/lyb/detail.asp?id=9720 http://corpus.usx.edu.cn/lyb/detail.asp?id=9721 http://corpus.usx.edu.cn/lyb/detail.asp?id=9722 http://corpus.usx.edu.cn/lyb/detail.asp?id=9723 http://corpus.usx.edu.cn/lyb/detail.asp?id=9724 http://corpus.usx.edu.cn/lyb/detail.asp?id=9725 http://corpus.usx.edu.cn/lyb/detail.asp?id=9726 http://corpus.usx.edu.cn/lyb/detail.asp?id=9727 http://corpus.usx.edu.cn/lyb/detail.asp?id=9728 http://corpus.usx.edu.cn/lyb/detail.asp?id=9729 http://corpus.usx.edu.cn/lyb/detail.asp?id=9730 http://corpus.usx.edu.cn/lyb/detail.asp?id=9731 http://corpus.usx.edu.cn/lyb/detail.asp?id=9732 http://corpus.usx.edu.cn/lyb/detail.asp?id=9733 http://corpus.usx.edu.cn/lyb/detail.asp?id=9734 http://corpus.usx.edu.cn/lyb/detail.asp?id=9735 http://corpus.usx.edu.cn/lyb/detail.asp?id=9736 http://corpus.usx.edu.cn/lyb/detail.asp?id=9737 http://corpus.usx.edu.cn/lyb/detail.asp?id=9738 http://corpus.usx.edu.cn/lyb/detail.asp?id=9739 http://corpus.usx.edu.cn/lyb/detail.asp?id=9740 http://corpus.usx.edu.cn/lyb/detail.asp?id=9741 http://corpus.usx.edu.cn/lyb/detail.asp?id=9742 http://corpus.usx.edu.cn/lyb/detail.asp?id=9743 http://corpus.usx.edu.cn/lyb/detail.asp?id=9744 http://corpus.usx.edu.cn/lyb/detail.asp?id=9745 http://corpus.usx.edu.cn/lyb/detail.asp?id=9746 http://corpus.usx.edu.cn/lyb/detail.asp?id=9747 http://corpus.usx.edu.cn/lyb/detail.asp?id=9748 http://corpus.usx.edu.cn/lyb/detail.asp?id=9749 http://corpus.usx.edu.cn/lyb/detail.asp?id=9750 http://corpus.usx.edu.cn/lyb/detail.asp?id=9751 http://corpus.usx.edu.cn/lyb/detail.asp?id=9752 http://corpus.usx.edu.cn/lyb/detail.asp?id=9753 http://corpus.usx.edu.cn/lyb/detail.asp?id=9754 http://corpus.usx.edu.cn/lyb/detail.asp?id=9755 http://corpus.usx.edu.cn/lyb/detail.asp?id=9756 http://corpus.usx.edu.cn/lyb/detail.asp?id=9757 http://corpus.usx.edu.cn/lyb/detail.asp?id=9758 http://corpus.usx.edu.cn/lyb/detail.asp?id=9759 http://corpus.usx.edu.cn/lyb/detail.asp?id=9760 http://corpus.usx.edu.cn/lyb/detail.asp?id=9761 http://corpus.usx.edu.cn/lyb/detail.asp?id=9762 http://corpus.usx.edu.cn/lyb/detail.asp?id=9763 http://corpus.usx.edu.cn/lyb/detail.asp?id=9764 http://corpus.usx.edu.cn/lyb/detail.asp?id=9765 http://corpus.usx.edu.cn/lyb/detail.asp?id=9766 http://corpus.usx.edu.cn/lyb/detail.asp?id=9767 http://corpus.usx.edu.cn/lyb/detail.asp?id=9768 http://corpus.usx.edu.cn/lyb/detail.asp?id=9769 http://corpus.usx.edu.cn/lyb/detail.asp?id=9770 http://corpus.usx.edu.cn/lyb/detail.asp?id=9771 http://corpus.usx.edu.cn/lyb/detail.asp?id=9772 http://corpus.usx.edu.cn/lyb/detail.asp?id=9773 http://corpus.usx.edu.cn/lyb/detail.asp?id=9774 http://corpus.usx.edu.cn/lyb/detail.asp?id=9775 http://corpus.usx.edu.cn/lyb/detail.asp?id=9776 http://corpus.usx.edu.cn/lyb/detail.asp?id=9777 http://corpus.usx.edu.cn/lyb/detail.asp?id=9778 http://corpus.usx.edu.cn/lyb/detail.asp?id=9779 http://corpus.usx.edu.cn/lyb/detail.asp?id=9780 http://corpus.usx.edu.cn/lyb/detail.asp?id=9781 http://corpus.usx.edu.cn/lyb/detail.asp?id=9782 http://corpus.usx.edu.cn/lyb/detail.asp?id=9783 http://corpus.usx.edu.cn/lyb/detail.asp?id=9784 http://corpus.usx.edu.cn/lyb/detail.asp?id=9785 http://corpus.usx.edu.cn/lyb/detail.asp?id=9786 http://corpus.usx.edu.cn/lyb/detail.asp?id=9787 http://corpus.usx.edu.cn/lyb/detail.asp?id=9788 http://corpus.usx.edu.cn/lyb/detail.asp?id=9789 http://corpus.usx.edu.cn/lyb/detail.asp?id=9790 http://corpus.usx.edu.cn/lyb/detail.asp?id=9791 http://corpus.usx.edu.cn/lyb/detail.asp?id=9792 http://corpus.usx.edu.cn/lyb/detail.asp?id=9793 http://corpus.usx.edu.cn/lyb/detail.asp?id=9794 http://corpus.usx.edu.cn/lyb/detail.asp?id=9795 http://corpus.usx.edu.cn/lyb/detail.asp?id=9796 http://corpus.usx.edu.cn/lyb/detail.asp?id=9797 http://corpus.usx.edu.cn/lyb/detail.asp?id=9798 http://corpus.usx.edu.cn/lyb/detail.asp?id=9799 http://corpus.usx.edu.cn/lyb/detail.asp?id=9800 http://corpus.usx.edu.cn/lyb/detail.asp?id=9801 http://corpus.usx.edu.cn/lyb/detail.asp?id=9802 http://corpus.usx.edu.cn/lyb/detail.asp?id=9803 http://corpus.usx.edu.cn/lyb/detail.asp?id=9804 http://corpus.usx.edu.cn/lyb/detail.asp?id=9805 http://corpus.usx.edu.cn/lyb/detail.asp?id=9806 http://corpus.usx.edu.cn/lyb/detail.asp?id=9807 http://corpus.usx.edu.cn/lyb/detail.asp?id=9808 http://corpus.usx.edu.cn/lyb/detail.asp?id=9809 http://corpus.usx.edu.cn/lyb/detail.asp?id=9810 http://corpus.usx.edu.cn/lyb/detail.asp?id=9811 http://corpus.usx.edu.cn/lyb/detail.asp?id=9812 http://corpus.usx.edu.cn/lyb/detail.asp?id=9813 http://corpus.usx.edu.cn/lyb/detail.asp?id=9814 http://corpus.usx.edu.cn/lyb/detail.asp?id=9815 http://corpus.usx.edu.cn/lyb/detail.asp?id=9816 http://corpus.usx.edu.cn/lyb/detail.asp?id=9817 http://corpus.usx.edu.cn/lyb/detail.asp?id=9818 http://corpus.usx.edu.cn/lyb/detail.asp?id=9819 http://corpus.usx.edu.cn/lyb/detail.asp?id=9820 http://corpus.usx.edu.cn/lyb/detail.asp?id=9821 http://corpus.usx.edu.cn/lyb/detail.asp?id=9822 http://corpus.usx.edu.cn/lyb/detail.asp?id=9823 http://corpus.usx.edu.cn/lyb/detail.asp?id=9824 http://corpus.usx.edu.cn/lyb/detail.asp?id=9825 http://corpus.usx.edu.cn/lyb/detail.asp?id=9826 http://corpus.usx.edu.cn/lyb/detail.asp?id=9827 http://corpus.usx.edu.cn/lyb/detail.asp?id=9828 http://corpus.usx.edu.cn/lyb/detail.asp?id=9829 http://corpus.usx.edu.cn/lyb/detail.asp?id=9830 http://corpus.usx.edu.cn/lyb/detail.asp?id=9831 http://corpus.usx.edu.cn/lyb/detail.asp?id=9832 http://corpus.usx.edu.cn/lyb/detail.asp?id=9833 http://corpus.usx.edu.cn/lyb/detail.asp?id=9834 http://corpus.usx.edu.cn/lyb/detail.asp?id=9835 http://corpus.usx.edu.cn/lyb/detail.asp?id=9836 http://corpus.usx.edu.cn/lyb/detail.asp?id=9837 http://corpus.usx.edu.cn/lyb/detail.asp?id=9838 http://corpus.usx.edu.cn/lyb/detail.asp?id=9839 http://corpus.usx.edu.cn/lyb/detail.asp?id=9840 http://corpus.usx.edu.cn/lyb/detail.asp?id=9841 http://corpus.usx.edu.cn/lyb/detail.asp?id=9842 http://corpus.usx.edu.cn/lyb/detail.asp?id=9843 http://corpus.usx.edu.cn/lyb/detail.asp?id=9844 http://corpus.usx.edu.cn/lyb/detail.asp?id=9845 http://corpus.usx.edu.cn/lyb/detail.asp?id=9846 http://corpus.usx.edu.cn/lyb/detail.asp?id=9847 http://corpus.usx.edu.cn/lyb/detail.asp?id=9848 http://corpus.usx.edu.cn/lyb/detail.asp?id=9849 http://corpus.usx.edu.cn/lyb/detail.asp?id=9850 http://corpus.usx.edu.cn/lyb/detail.asp?id=9851 http://corpus.usx.edu.cn/lyb/detail.asp?id=9852 http://corpus.usx.edu.cn/lyb/detail.asp?id=9853 http://corpus.usx.edu.cn/lyb/detail.asp?id=9854 http://corpus.usx.edu.cn/lyb/detail.asp?id=9855 http://corpus.usx.edu.cn/lyb/detail.asp?id=9856 http://corpus.usx.edu.cn/lyb/detail.asp?id=9857 http://corpus.usx.edu.cn/lyb/detail.asp?id=9858 http://corpus.usx.edu.cn/lyb/detail.asp?id=9859 http://corpus.usx.edu.cn/lyb/detail.asp?id=9860 http://corpus.usx.edu.cn/lyb/detail.asp?id=9861 http://corpus.usx.edu.cn/lyb/detail.asp?id=9862 http://corpus.usx.edu.cn/lyb/detail.asp?id=9863 http://corpus.usx.edu.cn/lyb/detail.asp?id=9864 http://corpus.usx.edu.cn/lyb/detail.asp?id=9865 http://corpus.usx.edu.cn/lyb/detail.asp?id=9866 http://corpus.usx.edu.cn/lyb/detail.asp?id=9867 http://corpus.usx.edu.cn/lyb/detail.asp?id=9868 http://corpus.usx.edu.cn/lyb/detail.asp?id=9869 http://corpus.usx.edu.cn/lyb/detail.asp?id=9870 http://corpus.usx.edu.cn/lyb/detail.asp?id=9871 http://corpus.usx.edu.cn/lyb/detail.asp?id=9872 http://corpus.usx.edu.cn/lyb/detail.asp?id=9873 http://corpus.usx.edu.cn/lyb/detail.asp?id=9874 http://corpus.usx.edu.cn/lyb/detail.asp?id=9875 http://corpus.usx.edu.cn/lyb/detail.asp?id=9876 http://corpus.usx.edu.cn/lyb/detail.asp?id=9877 http://corpus.usx.edu.cn/lyb/detail.asp?id=9878 http://corpus.usx.edu.cn/lyb/detail.asp?id=9879 http://corpus.usx.edu.cn/lyb/detail.asp?id=9880 http://corpus.usx.edu.cn/lyb/detail.asp?id=9881 http://corpus.usx.edu.cn/lyb/detail.asp?id=9882 http://corpus.usx.edu.cn/lyb/detail.asp?id=9883 http://corpus.usx.edu.cn/lyb/detail.asp?id=9884 http://corpus.usx.edu.cn/lyb/detail.asp?id=9885 http://corpus.usx.edu.cn/lyb/detail.asp?id=9886 http://corpus.usx.edu.cn/lyb/detail.asp?id=9887 http://corpus.usx.edu.cn/lyb/detail.asp?id=9888 http://corpus.usx.edu.cn/lyb/detail.asp?id=9889 http://corpus.usx.edu.cn/lyb/detail.asp?id=9890 http://corpus.usx.edu.cn/lyb/detail.asp?id=9891 http://corpus.usx.edu.cn/lyb/detail.asp?id=9892 http://corpus.usx.edu.cn/lyb/detail.asp?id=9893 http://corpus.usx.edu.cn/lyb/detail.asp?id=9894 http://corpus.usx.edu.cn/lyb/detail.asp?id=9895 http://corpus.usx.edu.cn/lyb/detail.asp?id=9896 http://corpus.usx.edu.cn/lyb/detail.asp?id=9897 http://corpus.usx.edu.cn/lyb/detail.asp?id=9898 http://corpus.usx.edu.cn/lyb/detail.asp?id=9899 http://corpus.usx.edu.cn/lyb/detail.asp?id=9900 http://corpus.usx.edu.cn/lyb/detail.asp?id=9901 http://corpus.usx.edu.cn/lyb/detail.asp?id=9902 http://corpus.usx.edu.cn/lyb/detail.asp?id=9903 http://corpus.usx.edu.cn/lyb/detail.asp?id=9904 http://corpus.usx.edu.cn/lyb/detail.asp?id=9905 http://corpus.usx.edu.cn/lyb/detail.asp?id=9906 http://corpus.usx.edu.cn/lyb/detail.asp?id=9907 http://corpus.usx.edu.cn/lyb/detail.asp?id=9908 http://corpus.usx.edu.cn/lyb/detail.asp?id=9909 http://corpus.usx.edu.cn/lyb/detail.asp?id=9910 http://corpus.usx.edu.cn/lyb/detail.asp?id=9911 http://corpus.usx.edu.cn/lyb/detail.asp?id=9912 http://corpus.usx.edu.cn/lyb/detail.asp?id=9913 http://corpus.usx.edu.cn/lyb/detail.asp?id=9914 http://corpus.usx.edu.cn/lyb/detail.asp?id=9915 http://corpus.usx.edu.cn/lyb/detail.asp?id=9916 http://corpus.usx.edu.cn/lyb/detail.asp?id=9917 http://corpus.usx.edu.cn/lyb/detail.asp?id=9918 http://corpus.usx.edu.cn/lyb/detail.asp?id=9919 http://corpus.usx.edu.cn/lyb/detail.asp?id=9920 http://corpus.usx.edu.cn/lyb/detail.asp?id=9921 http://corpus.usx.edu.cn/lyb/detail.asp?id=9922 http://corpus.usx.edu.cn/lyb/detail.asp?id=9923 http://corpus.usx.edu.cn/lyb/detail.asp?id=9924 http://corpus.usx.edu.cn/lyb/detail.asp?id=9925 http://corpus.usx.edu.cn/lyb/detail.asp?id=9926 http://corpus.usx.edu.cn/lyb/detail.asp?id=9927 http://corpus.usx.edu.cn/lyb/detail.asp?id=9928 http://corpus.usx.edu.cn/lyb/detail.asp?id=9929 http://corpus.usx.edu.cn/lyb/detail.asp?id=9930 http://corpus.usx.edu.cn/lyb/detail.asp?id=9931 http://corpus.usx.edu.cn/lyb/detail.asp?id=9932 http://corpus.usx.edu.cn/lyb/detail.asp?id=9933 http://corpus.usx.edu.cn/lyb/detail.asp?id=9934 http://corpus.usx.edu.cn/lyb/detail.asp?id=9935 http://corpus.usx.edu.cn/lyb/detail.asp?id=9936 http://corpus.usx.edu.cn/lyb/detail.asp?id=9937 http://corpus.usx.edu.cn/lyb/detail.asp?id=9938 http://corpus.usx.edu.cn/lyb/detail.asp?id=9939 http://corpus.usx.edu.cn/lyb/detail.asp?id=9940 http://corpus.usx.edu.cn/lyb/detail.asp?id=9941 http://corpus.usx.edu.cn/lyb/detail.asp?id=9942 http://corpus.usx.edu.cn/lyb/detail.asp?id=9943 http://corpus.usx.edu.cn/lyb/detail.asp?id=9944 http://corpus.usx.edu.cn/lyb/detail.asp?id=9945 http://corpus.usx.edu.cn/lyb/detail.asp?id=9946 http://corpus.usx.edu.cn/lyb/detail.asp?id=9947 http://corpus.usx.edu.cn/lyb/detail.asp?id=9948 http://corpus.usx.edu.cn/lyb/detail.asp?id=9949 http://corpus.usx.edu.cn/lyb/detail.asp?id=9950 http://corpus.usx.edu.cn/lyb/detail.asp?id=9951 http://corpus.usx.edu.cn/lyb/detail.asp?id=9952 http://corpus.usx.edu.cn/lyb/detail.asp?id=9953 http://corpus.usx.edu.cn/lyb/detail.asp?id=9954 http://corpus.usx.edu.cn/lyb/detail.asp?id=9955 http://corpus.usx.edu.cn/lyb/detail.asp?id=9956 http://corpus.usx.edu.cn/lyb/detail.asp?id=9957 http://corpus.usx.edu.cn/lyb/detail.asp?id=9958 http://corpus.usx.edu.cn/lyb/detail.asp?id=9959 http://corpus.usx.edu.cn/lyb/detail.asp?id=9960 http://corpus.usx.edu.cn/lyb/detail.asp?id=9961 http://corpus.usx.edu.cn/lyb/detail.asp?id=9962 http://corpus.usx.edu.cn/lyb/detail.asp?id=9963 http://corpus.usx.edu.cn/lyb/detail.asp?id=9964 http://corpus.usx.edu.cn/lyb/detail.asp?id=9965 http://corpus.usx.edu.cn/lyb/detail.asp?id=9966 http://corpus.usx.edu.cn/lyb/detail.asp?id=9967 http://corpus.usx.edu.cn/lyb/detail.asp?id=9968 http://corpus.usx.edu.cn/lyb/detail.asp?id=9969 http://corpus.usx.edu.cn/lyb/detail.asp?id=9970 http://corpus.usx.edu.cn/lyb/detail.asp?id=9971 http://corpus.usx.edu.cn/lyb/detail.asp?id=9972 http://corpus.usx.edu.cn/lyb/detail.asp?id=9973 http://corpus.usx.edu.cn/lyb/detail.asp?id=9974 http://corpus.usx.edu.cn/lyb/detail.asp?id=9975 http://corpus.usx.edu.cn/lyb/detail.asp?id=9976 http://corpus.usx.edu.cn/lyb/detail.asp?id=9977 http://corpus.usx.edu.cn/lyb/detail.asp?id=9978 http://corpus.usx.edu.cn/lyb/detail.asp?id=9979 http://corpus.usx.edu.cn/lyb/detail.asp?id=9980 http://corpus.usx.edu.cn/lyb/detail.asp?id=9981 http://corpus.usx.edu.cn/lyb/detail.asp?id=9982 http://corpus.usx.edu.cn/lyb/detail.asp?id=9983 http://corpus.usx.edu.cn/lyb/detail.asp?id=9984 http://corpus.usx.edu.cn/lyb/detail.asp?id=9985 http://corpus.usx.edu.cn/lyb/detail.asp?id=9986 http://corpus.usx.edu.cn/lyb/detail.asp?id=9987 http://corpus.usx.edu.cn/lyb/detail.asp?id=9988 http://corpus.usx.edu.cn/lyb/detail.asp?id=9989 http://corpus.usx.edu.cn/lyb/detail.asp?id=9990 http://corpus.usx.edu.cn/lyb/detail.asp?id=9991 http://corpus.usx.edu.cn/lyb/detail.asp?id=9992 http://corpus.usx.edu.cn/lyb/detail.asp?id=9993 http://corpus.usx.edu.cn/lyb/detail.asp?id=9994 http://corpus.usx.edu.cn/lyb/detail.asp?id=9995 http://corpus.usx.edu.cn/lyb/detail.asp?id=9996 http://corpus.usx.edu.cn/lyb/detail.asp?id=9997 http://corpus.usx.edu.cn/lyb/detail.asp?id=9998 http://corpus.usx.edu.cn/lyb/detail.asp?id=9999 http://corpus.usx.edu.cn/lyb/detail.asp?id=10000 http://corpus.usx.edu.cn/lyb/detail.asp?id=10001 http://corpus.usx.edu.cn/lyb/detail.asp?id=10002 http://corpus.usx.edu.cn/lyb/detail.asp?id=10003 http://corpus.usx.edu.cn/lyb/detail.asp?id=10004 http://corpus.usx.edu.cn/lyb/detail.asp?id=10005 http://corpus.usx.edu.cn/lyb/detail.asp?id=10006 http://corpus.usx.edu.cn/lyb/detail.asp?id=10007 http://corpus.usx.edu.cn/lyb/detail.asp?id=10008 http://corpus.usx.edu.cn/lyb/detail.asp?id=10009 http://corpus.usx.edu.cn/lyb/detail.asp?id=10010 http://corpus.usx.edu.cn/lyb/detail.asp?id=10011 http://corpus.usx.edu.cn/lyb/detail.asp?id=10012 http://corpus.usx.edu.cn/lyb/detail.asp?id=10013 http://corpus.usx.edu.cn/lyb/detail.asp?id=10014 http://corpus.usx.edu.cn/lyb/detail.asp?id=10015 http://corpus.usx.edu.cn/lyb/detail.asp?id=10016 http://corpus.usx.edu.cn/lyb/detail.asp?id=10017 http://corpus.usx.edu.cn/lyb/detail.asp?id=10018 http://corpus.usx.edu.cn/lyb/detail.asp?id=10019 http://corpus.usx.edu.cn/lyb/detail.asp?id=10020 http://corpus.usx.edu.cn/lyb/detail.asp?id=10021 http://corpus.usx.edu.cn/lyb/detail.asp?id=10022 http://corpus.usx.edu.cn/lyb/detail.asp?id=10023 http://corpus.usx.edu.cn/lyb/detail.asp?id=10024 http://corpus.usx.edu.cn/lyb/detail.asp?id=10025 http://corpus.usx.edu.cn/lyb/detail.asp?id=10026 http://corpus.usx.edu.cn/lyb/detail.asp?id=10027 http://corpus.usx.edu.cn/lyb/detail.asp?id=10028 http://corpus.usx.edu.cn/lyb/detail.asp?id=10029 http://corpus.usx.edu.cn/lyb/detail.asp?id=10030 http://corpus.usx.edu.cn/lyb/detail.asp?id=10031 http://corpus.usx.edu.cn/lyb/detail.asp?id=10032 http://corpus.usx.edu.cn/lyb/detail.asp?id=10033 http://corpus.usx.edu.cn/lyb/detail.asp?id=10034 http://corpus.usx.edu.cn/lyb/detail.asp?id=10035 http://corpus.usx.edu.cn/lyb/detail.asp?id=10036 http://corpus.usx.edu.cn/lyb/detail.asp?id=10037 http://corpus.usx.edu.cn/lyb/detail.asp?id=10038 http://corpus.usx.edu.cn/lyb/detail.asp?id=10039 http://corpus.usx.edu.cn/lyb/detail.asp?id=10040 http://corpus.usx.edu.cn/lyb/detail.asp?id=10041 http://corpus.usx.edu.cn/lyb/detail.asp?id=10042 http://corpus.usx.edu.cn/lyb/detail.asp?id=10043 http://corpus.usx.edu.cn/lyb/detail.asp?id=10044 http://corpus.usx.edu.cn/lyb/detail.asp?id=10045 http://corpus.usx.edu.cn/lyb/detail.asp?id=10046 http://corpus.usx.edu.cn/lyb/detail.asp?id=10047 http://corpus.usx.edu.cn/lyb/detail.asp?id=10048 http://corpus.usx.edu.cn/lyb/detail.asp?id=10049 http://corpus.usx.edu.cn/lyb/detail.asp?id=10050 http://corpus.usx.edu.cn/lyb/detail.asp?id=10051 http://corpus.usx.edu.cn/lyb/detail.asp?id=10052 http://corpus.usx.edu.cn/lyb/detail.asp?id=10053 http://corpus.usx.edu.cn/lyb/detail.asp?id=10054 http://corpus.usx.edu.cn/lyb/detail.asp?id=10055 http://corpus.usx.edu.cn/lyb/detail.asp?id=10056 http://corpus.usx.edu.cn/lyb/detail.asp?id=10057 http://corpus.usx.edu.cn/lyb/detail.asp?id=10058 http://corpus.usx.edu.cn/lyb/detail.asp?id=10059 http://corpus.usx.edu.cn/lyb/detail.asp?id=10060 http://corpus.usx.edu.cn/lyb/detail.asp?id=10061 http://corpus.usx.edu.cn/lyb/detail.asp?id=10062 http://corpus.usx.edu.cn/lyb/detail.asp?id=10063 http://corpus.usx.edu.cn/lyb/detail.asp?id=10064 http://corpus.usx.edu.cn/lyb/detail.asp?id=10065 http://corpus.usx.edu.cn/lyb/detail.asp?id=10066 http://corpus.usx.edu.cn/lyb/detail.asp?id=10067 http://corpus.usx.edu.cn/lyb/detail.asp?id=10068 http://corpus.usx.edu.cn/lyb/detail.asp?id=10069 http://corpus.usx.edu.cn/lyb/detail.asp?id=10070 http://corpus.usx.edu.cn/lyb/detail.asp?id=10071 http://corpus.usx.edu.cn/lyb/detail.asp?id=10072 http://corpus.usx.edu.cn/lyb/detail.asp?id=10073 http://corpus.usx.edu.cn/lyb/detail.asp?id=10074 http://corpus.usx.edu.cn/lyb/detail.asp?id=10075 http://corpus.usx.edu.cn/lyb/detail.asp?id=10076 http://corpus.usx.edu.cn/lyb/detail.asp?id=10077 http://corpus.usx.edu.cn/lyb/detail.asp?id=10078 http://corpus.usx.edu.cn/lyb/detail.asp?id=10079 http://corpus.usx.edu.cn/lyb/detail.asp?id=10080 http://corpus.usx.edu.cn/lyb/detail.asp?id=10081 http://corpus.usx.edu.cn/lyb/detail.asp?id=10082 http://corpus.usx.edu.cn/lyb/detail.asp?id=10083 http://corpus.usx.edu.cn/lyb/detail.asp?id=10084 http://corpus.usx.edu.cn/lyb/detail.asp?id=10085 http://corpus.usx.edu.cn/lyb/detail.asp?id=10086 http://corpus.usx.edu.cn/lyb/detail.asp?id=10087 http://corpus.usx.edu.cn/lyb/detail.asp?id=10088 http://corpus.usx.edu.cn/lyb/detail.asp?id=10089 http://corpus.usx.edu.cn/lyb/detail.asp?id=10090 http://corpus.usx.edu.cn/lyb/detail.asp?id=10091 http://corpus.usx.edu.cn/lyb/detail.asp?id=10092 http://corpus.usx.edu.cn/lyb/detail.asp?id=10093 http://corpus.usx.edu.cn/lyb/detail.asp?id=10094 http://corpus.usx.edu.cn/lyb/detail.asp?id=10095 http://corpus.usx.edu.cn/lyb/detail.asp?id=10096 http://corpus.usx.edu.cn/lyb/detail.asp?id=10097 http://corpus.usx.edu.cn/lyb/detail.asp?id=10098 http://corpus.usx.edu.cn/lyb/detail.asp?id=10099 http://corpus.usx.edu.cn/lyb/detail.asp?id=10100 http://corpus.usx.edu.cn/lyb/detail.asp?id=10101 http://corpus.usx.edu.cn/lyb/detail.asp?id=10102 http://corpus.usx.edu.cn/lyb/detail.asp?id=10103 http://corpus.usx.edu.cn/lyb/detail.asp?id=10104 http://corpus.usx.edu.cn/lyb/detail.asp?id=10105 http://corpus.usx.edu.cn/lyb/detail.asp?id=10106 http://corpus.usx.edu.cn/lyb/detail.asp?id=10107 http://corpus.usx.edu.cn/lyb/detail.asp?id=10108 http://corpus.usx.edu.cn/lyb/detail.asp?id=10109 http://corpus.usx.edu.cn/lyb/detail.asp?id=10110 http://corpus.usx.edu.cn/lyb/detail.asp?id=10111 http://corpus.usx.edu.cn/lyb/detail.asp?id=10112 http://corpus.usx.edu.cn/lyb/detail.asp?id=10113 http://corpus.usx.edu.cn/lyb/detail.asp?id=10114 http://corpus.usx.edu.cn/lyb/detail.asp?id=10115 http://corpus.usx.edu.cn/lyb/detail.asp?id=10116 http://corpus.usx.edu.cn/lyb/detail.asp?id=10117 http://corpus.usx.edu.cn/lyb/detail.asp?id=10118 http://corpus.usx.edu.cn/lyb/detail.asp?id=10119 http://corpus.usx.edu.cn/lyb/detail.asp?id=10120 http://corpus.usx.edu.cn/lyb/detail.asp?id=10121 http://corpus.usx.edu.cn/lyb/detail.asp?id=10122 http://corpus.usx.edu.cn/lyb/detail.asp?id=10123 http://corpus.usx.edu.cn/lyb/detail.asp?id=10124 http://corpus.usx.edu.cn/lyb/detail.asp?id=10125 http://corpus.usx.edu.cn/lyb/detail.asp?id=10126 http://corpus.usx.edu.cn/lyb/detail.asp?id=10127 http://corpus.usx.edu.cn/lyb/detail.asp?id=10128 http://corpus.usx.edu.cn/lyb/detail.asp?id=10129 http://corpus.usx.edu.cn/lyb/detail.asp?id=10130 http://corpus.usx.edu.cn/lyb/detail.asp?id=10131 http://corpus.usx.edu.cn/lyb/detail.asp?id=10132 http://corpus.usx.edu.cn/lyb/detail.asp?id=10133 http://corpus.usx.edu.cn/lyb/detail.asp?id=10134 http://corpus.usx.edu.cn/lyb/detail.asp?id=10135 http://corpus.usx.edu.cn/lyb/detail.asp?id=10136 http://corpus.usx.edu.cn/lyb/detail.asp?id=10137 http://corpus.usx.edu.cn/lyb/detail.asp?id=10138 http://corpus.usx.edu.cn/lyb/detail.asp?id=10139 http://corpus.usx.edu.cn/lyb/detail.asp?id=10140 http://corpus.usx.edu.cn/lyb/detail.asp?id=10141 http://corpus.usx.edu.cn/lyb/detail.asp?id=10142 http://corpus.usx.edu.cn/lyb/detail.asp?id=10143 http://corpus.usx.edu.cn/lyb/detail.asp?id=10144 http://corpus.usx.edu.cn/lyb/detail.asp?id=10145 http://corpus.usx.edu.cn/lyb/detail.asp?id=10146 http://corpus.usx.edu.cn/lyb/detail.asp?id=10147 http://corpus.usx.edu.cn/lyb/detail.asp?id=10148 http://corpus.usx.edu.cn/lyb/detail.asp?id=10149 http://corpus.usx.edu.cn/lyb/detail.asp?id=10150 http://corpus.usx.edu.cn/lyb/detail.asp?id=10151 http://corpus.usx.edu.cn/lyb/detail.asp?id=10152 http://corpus.usx.edu.cn/lyb/detail.asp?id=10153 http://corpus.usx.edu.cn/lyb/detail.asp?id=10154 http://corpus.usx.edu.cn/lyb/detail.asp?id=10155 http://corpus.usx.edu.cn/lyb/detail.asp?id=10156 http://corpus.usx.edu.cn/lyb/detail.asp?id=10157 http://corpus.usx.edu.cn/lyb/detail.asp?id=10158 http://corpus.usx.edu.cn/lyb/detail.asp?id=10159 http://corpus.usx.edu.cn/lyb/detail.asp?id=10160 http://corpus.usx.edu.cn/lyb/detail.asp?id=10161 http://corpus.usx.edu.cn/lyb/detail.asp?id=10162 http://corpus.usx.edu.cn/lyb/detail.asp?id=10163 http://corpus.usx.edu.cn/lyb/detail.asp?id=10164 http://corpus.usx.edu.cn/lyb/detail.asp?id=10165 http://corpus.usx.edu.cn/lyb/detail.asp?id=10166 http://corpus.usx.edu.cn/lyb/detail.asp?id=10167 http://corpus.usx.edu.cn/lyb/detail.asp?id=10168 http://corpus.usx.edu.cn/lyb/detail.asp?id=10169 http://corpus.usx.edu.cn/lyb/detail.asp?id=10170 http://corpus.usx.edu.cn/lyb/detail.asp?id=10171 http://corpus.usx.edu.cn/lyb/detail.asp?id=10172 http://corpus.usx.edu.cn/lyb/detail.asp?id=10173 http://corpus.usx.edu.cn/lyb/detail.asp?id=10174 http://corpus.usx.edu.cn/lyb/detail.asp?id=10175 http://corpus.usx.edu.cn/lyb/detail.asp?id=10176 http://corpus.usx.edu.cn/lyb/detail.asp?id=10177 http://corpus.usx.edu.cn/lyb/detail.asp?id=10178 http://corpus.usx.edu.cn/lyb/detail.asp?id=10179 http://corpus.usx.edu.cn/lyb/detail.asp?id=10180 http://corpus.usx.edu.cn/lyb/detail.asp?id=10181 http://corpus.usx.edu.cn/lyb/detail.asp?id=10182 http://corpus.usx.edu.cn/lyb/detail.asp?id=10183 http://corpus.usx.edu.cn/lyb/detail.asp?id=10184 http://corpus.usx.edu.cn/lyb/detail.asp?id=10185 http://corpus.usx.edu.cn/lyb/detail.asp?id=10186 http://corpus.usx.edu.cn/lyb/detail.asp?id=10187 http://corpus.usx.edu.cn/lyb/detail.asp?id=10188 http://corpus.usx.edu.cn/lyb/detail.asp?id=10189 http://corpus.usx.edu.cn/lyb/detail.asp?id=10190 http://corpus.usx.edu.cn/lyb/detail.asp?id=10191 http://corpus.usx.edu.cn/lyb/detail.asp?id=10192 http://corpus.usx.edu.cn/lyb/detail.asp?id=10193 http://corpus.usx.edu.cn/lyb/detail.asp?id=10194 http://corpus.usx.edu.cn/lyb/detail.asp?id=10195 http://corpus.usx.edu.cn/lyb/detail.asp?id=10196 http://corpus.usx.edu.cn/lyb/detail.asp?id=10197 http://corpus.usx.edu.cn/lyb/detail.asp?id=10198 http://corpus.usx.edu.cn/lyb/detail.asp?id=10199 http://corpus.usx.edu.cn/lyb/detail.asp?id=10200 http://corpus.usx.edu.cn/lyb/detail.asp?id=10201 http://corpus.usx.edu.cn/lyb/detail.asp?id=10202 http://corpus.usx.edu.cn/lyb/detail.asp?id=10203 http://corpus.usx.edu.cn/lyb/detail.asp?id=10204 http://corpus.usx.edu.cn/lyb/detail.asp?id=10205 http://corpus.usx.edu.cn/lyb/detail.asp?id=10206 http://corpus.usx.edu.cn/lyb/detail.asp?id=10207 http://corpus.usx.edu.cn/lyb/detail.asp?id=10208 http://corpus.usx.edu.cn/lyb/detail.asp?id=10209 http://corpus.usx.edu.cn/lyb/detail.asp?id=10210 http://corpus.usx.edu.cn/lyb/detail.asp?id=10211 http://corpus.usx.edu.cn/lyb/detail.asp?id=10212 http://corpus.usx.edu.cn/lyb/detail.asp?id=10213 http://corpus.usx.edu.cn/lyb/detail.asp?id=10214 http://corpus.usx.edu.cn/lyb/detail.asp?id=10215 http://corpus.usx.edu.cn/lyb/detail.asp?id=10216 http://corpus.usx.edu.cn/lyb/detail.asp?id=10217 http://corpus.usx.edu.cn/lyb/detail.asp?id=10218 http://corpus.usx.edu.cn/lyb/detail.asp?id=10219 http://corpus.usx.edu.cn/lyb/detail.asp?id=10220 http://corpus.usx.edu.cn/lyb/detail.asp?id=10221 http://corpus.usx.edu.cn/lyb/detail.asp?id=10222 http://corpus.usx.edu.cn/lyb/detail.asp?id=10223 http://corpus.usx.edu.cn/lyb/detail.asp?id=10224 http://corpus.usx.edu.cn/lyb/detail.asp?id=10225 http://corpus.usx.edu.cn/lyb/detail.asp?id=10226 http://corpus.usx.edu.cn/lyb/detail.asp?id=10227 http://corpus.usx.edu.cn/lyb/detail.asp?id=10228 http://corpus.usx.edu.cn/lyb/detail.asp?id=10229 http://corpus.usx.edu.cn/lyb/detail.asp?id=10230 http://corpus.usx.edu.cn/lyb/detail.asp?id=10231 http://corpus.usx.edu.cn/lyb/detail.asp?id=10232 http://corpus.usx.edu.cn/lyb/detail.asp?id=10233 http://corpus.usx.edu.cn/lyb/detail.asp?id=10234 http://corpus.usx.edu.cn/lyb/detail.asp?id=10235 http://corpus.usx.edu.cn/lyb/detail.asp?id=10236 http://corpus.usx.edu.cn/lyb/detail.asp?id=10237 http://corpus.usx.edu.cn/lyb/detail.asp?id=10238 http://corpus.usx.edu.cn/lyb/detail.asp?id=10239 http://corpus.usx.edu.cn/lyb/detail.asp?id=10240 http://corpus.usx.edu.cn/lyb/detail.asp?id=10241 http://corpus.usx.edu.cn/lyb/detail.asp?id=10242 http://corpus.usx.edu.cn/lyb/detail.asp?id=10243 http://corpus.usx.edu.cn/lyb/detail.asp?id=10244 http://corpus.usx.edu.cn/lyb/detail.asp?id=10245 http://corpus.usx.edu.cn/lyb/detail.asp?id=10246 http://corpus.usx.edu.cn/lyb/detail.asp?id=10247 http://corpus.usx.edu.cn/lyb/detail.asp?id=10248 http://corpus.usx.edu.cn/lyb/detail.asp?id=10249 http://corpus.usx.edu.cn/lyb/detail.asp?id=10250 http://corpus.usx.edu.cn/lyb/detail.asp?id=10251 http://corpus.usx.edu.cn/lyb/detail.asp?id=10252 http://corpus.usx.edu.cn/lyb/detail.asp?id=10253 http://corpus.usx.edu.cn/lyb/detail.asp?id=10254 http://corpus.usx.edu.cn/lyb/detail.asp?id=10255 http://corpus.usx.edu.cn/lyb/detail.asp?id=10256 http://corpus.usx.edu.cn/lyb/detail.asp?id=10257 http://corpus.usx.edu.cn/lyb/detail.asp?id=10258 http://corpus.usx.edu.cn/lyb/detail.asp?id=10259 http://corpus.usx.edu.cn/lyb/detail.asp?id=10260 http://corpus.usx.edu.cn/lyb/detail.asp?id=10261 http://corpus.usx.edu.cn/lyb/detail.asp?id=10262 http://corpus.usx.edu.cn/lyb/detail.asp?id=10263 http://corpus.usx.edu.cn/lyb/detail.asp?id=10264 http://corpus.usx.edu.cn/lyb/detail.asp?id=10265 http://corpus.usx.edu.cn/lyb/detail.asp?id=10266 http://corpus.usx.edu.cn/lyb/detail.asp?id=10267 http://corpus.usx.edu.cn/lyb/detail.asp?id=10268 http://corpus.usx.edu.cn/lyb/detail.asp?id=10269 http://corpus.usx.edu.cn/lyb/detail.asp?id=10270 http://corpus.usx.edu.cn/lyb/detail.asp?id=10271 http://corpus.usx.edu.cn/lyb/detail.asp?id=10272 http://corpus.usx.edu.cn/lyb/detail.asp?id=10273 http://corpus.usx.edu.cn/lyb/detail.asp?id=10274 http://corpus.usx.edu.cn/lyb/detail.asp?id=10275 http://corpus.usx.edu.cn/lyb/detail.asp?id=10276 http://corpus.usx.edu.cn/lyb/detail.asp?id=10277 http://corpus.usx.edu.cn/lyb/detail.asp?id=10278 http://corpus.usx.edu.cn/lyb/detail.asp?id=10279 http://corpus.usx.edu.cn/lyb/detail.asp?id=10280 http://corpus.usx.edu.cn/lyb/detail.asp?id=10281 http://corpus.usx.edu.cn/lyb/detail.asp?id=10282 http://corpus.usx.edu.cn/lyb/detail.asp?id=10283 http://corpus.usx.edu.cn/lyb/detail.asp?id=10284 http://corpus.usx.edu.cn/lyb/detail.asp?id=10285 http://corpus.usx.edu.cn/lyb/detail.asp?id=10286 http://corpus.usx.edu.cn/lyb/detail.asp?id=10287 http://corpus.usx.edu.cn/lyb/detail.asp?id=10288 http://corpus.usx.edu.cn/lyb/detail.asp?id=10289 http://corpus.usx.edu.cn/lyb/detail.asp?id=10290 http://corpus.usx.edu.cn/lyb/detail.asp?id=10291 http://corpus.usx.edu.cn/lyb/detail.asp?id=10292 http://corpus.usx.edu.cn/lyb/detail.asp?id=10293 http://corpus.usx.edu.cn/lyb/detail.asp?id=10294 http://corpus.usx.edu.cn/lyb/detail.asp?id=10295 http://corpus.usx.edu.cn/lyb/detail.asp?id=10296 http://corpus.usx.edu.cn/lyb/detail.asp?id=10297 http://corpus.usx.edu.cn/lyb/detail.asp?id=10298 http://corpus.usx.edu.cn/lyb/detail.asp?id=10299 http://corpus.usx.edu.cn/lyb/detail.asp?id=10300 http://corpus.usx.edu.cn/lyb/detail.asp?id=10301 http://corpus.usx.edu.cn/lyb/detail.asp?id=10302 http://corpus.usx.edu.cn/lyb/detail.asp?id=10303 http://corpus.usx.edu.cn/lyb/detail.asp?id=10304 http://corpus.usx.edu.cn/lyb/detail.asp?id=10305 http://corpus.usx.edu.cn/lyb/detail.asp?id=10306 http://corpus.usx.edu.cn/lyb/detail.asp?id=10307 http://corpus.usx.edu.cn/lyb/detail.asp?id=10308 http://corpus.usx.edu.cn/lyb/detail.asp?id=10309 http://corpus.usx.edu.cn/lyb/detail.asp?id=10310 http://corpus.usx.edu.cn/lyb/detail.asp?id=10311 http://corpus.usx.edu.cn/lyb/detail.asp?id=10312 http://corpus.usx.edu.cn/lyb/detail.asp?id=10313 http://corpus.usx.edu.cn/lyb/detail.asp?id=10314 http://corpus.usx.edu.cn/lyb/detail.asp?id=10315 http://corpus.usx.edu.cn/lyb/detail.asp?id=10316 http://corpus.usx.edu.cn/lyb/detail.asp?id=10317 http://corpus.usx.edu.cn/lyb/detail.asp?id=10318 http://corpus.usx.edu.cn/lyb/detail.asp?id=10319 http://corpus.usx.edu.cn/lyb/detail.asp?id=10320 http://corpus.usx.edu.cn/lyb/detail.asp?id=10321 http://corpus.usx.edu.cn/lyb/detail.asp?id=10322 http://corpus.usx.edu.cn/lyb/detail.asp?id=10323 http://corpus.usx.edu.cn/lyb/detail.asp?id=10324 http://corpus.usx.edu.cn/lyb/detail.asp?id=10325 http://corpus.usx.edu.cn/lyb/detail.asp?id=10326 http://corpus.usx.edu.cn/lyb/detail.asp?id=10327 http://corpus.usx.edu.cn/lyb/detail.asp?id=10328 http://corpus.usx.edu.cn/lyb/detail.asp?id=10329 http://corpus.usx.edu.cn/lyb/detail.asp?id=10330 http://corpus.usx.edu.cn/lyb/detail.asp?id=10331 http://corpus.usx.edu.cn/lyb/detail.asp?id=10332 http://corpus.usx.edu.cn/lyb/detail.asp?id=10333 http://corpus.usx.edu.cn/lyb/detail.asp?id=10334 http://corpus.usx.edu.cn/lyb/detail.asp?id=10335 http://corpus.usx.edu.cn/lyb/detail.asp?id=10336 http://corpus.usx.edu.cn/lyb/detail.asp?id=10337 http://corpus.usx.edu.cn/lyb/detail.asp?id=10338 http://corpus.usx.edu.cn/lyb/detail.asp?id=10339 http://corpus.usx.edu.cn/lyb/detail.asp?id=10340 http://corpus.usx.edu.cn/lyb/detail.asp?id=10341 http://corpus.usx.edu.cn/lyb/detail.asp?id=10342 http://corpus.usx.edu.cn/lyb/detail.asp?id=10343 http://corpus.usx.edu.cn/lyb/detail.asp?id=10344 http://corpus.usx.edu.cn/lyb/detail.asp?id=10345 http://corpus.usx.edu.cn/lyb/detail.asp?id=10346 http://corpus.usx.edu.cn/lyb/detail.asp?id=10347 http://corpus.usx.edu.cn/lyb/detail.asp?id=10348 http://corpus.usx.edu.cn/lyb/detail.asp?id=10349 http://corpus.usx.edu.cn/lyb/detail.asp?id=10350 http://corpus.usx.edu.cn/lyb/detail.asp?id=10351 http://corpus.usx.edu.cn/lyb/detail.asp?id=10352 http://corpus.usx.edu.cn/lyb/detail.asp?id=10353 http://corpus.usx.edu.cn/lyb/detail.asp?id=10354 http://corpus.usx.edu.cn/lyb/detail.asp?id=10355 http://corpus.usx.edu.cn/lyb/detail.asp?id=10356 http://corpus.usx.edu.cn/lyb/detail.asp?id=10357 http://corpus.usx.edu.cn/lyb/detail.asp?id=10358 http://corpus.usx.edu.cn/lyb/detail.asp?id=10359 http://corpus.usx.edu.cn/lyb/detail.asp?id=10360 http://corpus.usx.edu.cn/lyb/detail.asp?id=10361 http://corpus.usx.edu.cn/lyb/detail.asp?id=10362 http://corpus.usx.edu.cn/lyb/detail.asp?id=10363 http://corpus.usx.edu.cn/lyb/detail.asp?id=10364 http://corpus.usx.edu.cn/lyb/detail.asp?id=10365 http://corpus.usx.edu.cn/lyb/detail.asp?id=10366 http://corpus.usx.edu.cn/lyb/detail.asp?id=10367 http://corpus.usx.edu.cn/lyb/detail.asp?id=10368 http://corpus.usx.edu.cn/lyb/detail.asp?id=10369 http://corpus.usx.edu.cn/lyb/detail.asp?id=10370 http://corpus.usx.edu.cn/lyb/detail.asp?id=10371 http://corpus.usx.edu.cn/lyb/detail.asp?id=10372 http://corpus.usx.edu.cn/lyb/detail.asp?id=10373 http://corpus.usx.edu.cn/lyb/detail.asp?id=10374 http://corpus.usx.edu.cn/lyb/detail.asp?id=10375 http://corpus.usx.edu.cn/lyb/detail.asp?id=10376 http://corpus.usx.edu.cn/lyb/detail.asp?id=10377 http://corpus.usx.edu.cn/lyb/detail.asp?id=10378 http://corpus.usx.edu.cn/lyb/detail.asp?id=10379 http://corpus.usx.edu.cn/lyb/detail.asp?id=10380 http://corpus.usx.edu.cn/lyb/detail.asp?id=10381 http://corpus.usx.edu.cn/lyb/detail.asp?id=10382 http://corpus.usx.edu.cn/lyb/detail.asp?id=10383 http://corpus.usx.edu.cn/lyb/detail.asp?id=10384 http://corpus.usx.edu.cn/lyb/detail.asp?id=10385 http://corpus.usx.edu.cn/lyb/detail.asp?id=10386 http://corpus.usx.edu.cn/lyb/detail.asp?id=10387 http://corpus.usx.edu.cn/lyb/detail.asp?id=10388 http://corpus.usx.edu.cn/lyb/detail.asp?id=10389 http://corpus.usx.edu.cn/lyb/detail.asp?id=10390 http://corpus.usx.edu.cn/lyb/detail.asp?id=10391 http://corpus.usx.edu.cn/lyb/detail.asp?id=10392 http://corpus.usx.edu.cn/lyb/detail.asp?id=10393 http://corpus.usx.edu.cn/lyb/detail.asp?id=10394 http://corpus.usx.edu.cn/lyb/detail.asp?id=10395 http://corpus.usx.edu.cn/lyb/detail.asp?id=10396 http://corpus.usx.edu.cn/lyb/detail.asp?id=10397 http://corpus.usx.edu.cn/lyb/detail.asp?id=10398 http://corpus.usx.edu.cn/lyb/detail.asp?id=10399 http://corpus.usx.edu.cn/lyb/detail.asp?id=10400 http://corpus.usx.edu.cn/lyb/detail.asp?id=10401 http://corpus.usx.edu.cn/lyb/detail.asp?id=10402 http://corpus.usx.edu.cn/lyb/detail.asp?id=10403 http://corpus.usx.edu.cn/lyb/detail.asp?id=10404 http://corpus.usx.edu.cn/lyb/detail.asp?id=10405 http://corpus.usx.edu.cn/lyb/detail.asp?id=10406 http://corpus.usx.edu.cn/lyb/detail.asp?id=10407 http://corpus.usx.edu.cn/lyb/detail.asp?id=10408 http://corpus.usx.edu.cn/lyb/detail.asp?id=10409 http://corpus.usx.edu.cn/lyb/detail.asp?id=10410 http://corpus.usx.edu.cn/lyb/detail.asp?id=10411 http://corpus.usx.edu.cn/lyb/detail.asp?id=10412 http://corpus.usx.edu.cn/lyb/detail.asp?id=10413 http://corpus.usx.edu.cn/lyb/detail.asp?id=10414 http://corpus.usx.edu.cn/lyb/detail.asp?id=10415 http://corpus.usx.edu.cn/lyb/detail.asp?id=10416 http://corpus.usx.edu.cn/lyb/detail.asp?id=10417 http://corpus.usx.edu.cn/lyb/detail.asp?id=10418 http://corpus.usx.edu.cn/lyb/detail.asp?id=10419 http://corpus.usx.edu.cn/lyb/detail.asp?id=10420 http://corpus.usx.edu.cn/lyb/detail.asp?id=10421 http://corpus.usx.edu.cn/lyb/detail.asp?id=10422 http://corpus.usx.edu.cn/lyb/detail.asp?id=10423 http://corpus.usx.edu.cn/lyb/detail.asp?id=10424 http://corpus.usx.edu.cn/lyb/detail.asp?id=10425 http://corpus.usx.edu.cn/lyb/detail.asp?id=10426 http://corpus.usx.edu.cn/lyb/detail.asp?id=10427 http://corpus.usx.edu.cn/lyb/detail.asp?id=10428 http://corpus.usx.edu.cn/lyb/detail.asp?id=10429 http://corpus.usx.edu.cn/lyb/detail.asp?id=10430 http://corpus.usx.edu.cn/lyb/detail.asp?id=10431 http://corpus.usx.edu.cn/lyb/detail.asp?id=10432 http://corpus.usx.edu.cn/lyb/detail.asp?id=10433 http://corpus.usx.edu.cn/lyb/detail.asp?id=10434 http://corpus.usx.edu.cn/lyb/detail.asp?id=10435 http://corpus.usx.edu.cn/lyb/detail.asp?id=10436 http://corpus.usx.edu.cn/lyb/detail.asp?id=10437 http://corpus.usx.edu.cn/lyb/detail.asp?id=10438 http://corpus.usx.edu.cn/lyb/detail.asp?id=10439 http://corpus.usx.edu.cn/lyb/detail.asp?id=10440 http://corpus.usx.edu.cn/lyb/detail.asp?id=10441 http://corpus.usx.edu.cn/lyb/detail.asp?id=10442 http://corpus.usx.edu.cn/lyb/detail.asp?id=10443 http://corpus.usx.edu.cn/lyb/detail.asp?id=10444 http://corpus.usx.edu.cn/lyb/detail.asp?id=10445 一、Maven 静态资源过滤问题

src/main/java **/*.properties **/*.xml false src/main/resources **/*.properties **/*.xml false