日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > c/c++ >内容正文

c/c++

springMVC 与mybatis 整合 demo(maven 工程)

發布時間:2023/12/19 c/c++ 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 springMVC 与mybatis 整合 demo(maven 工程) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一、準備工作(mysql數據庫安裝)

1. 首先創建一個表:

  • CREATE?TABLE?`t_user`?(??
  • ??`USER_ID`?int(11)?NOT?NULL?AUTO_INCREMENT,??
  • ??`USER_NAME`?char(30)?NOT?NULL,??
  • ??`USER_PASSWORD`?char(10)?NOT?NULL,??
  • ??`USER_EMAIL`?char(30)?NOT?NULL,??
  • ??PRIMARY?KEY?(`USER_ID`),??
  • ??KEY?`IDX_NAME`?(`USER_NAME`)??
  • )?ENGINE=InnoDB?AUTO_INCREMENT=11?DEFAULT?CHARSET=utf8 ?
  • 隨便插入一些數據:

  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(1,?'林炳文',?'1234567@',?'ling20081005@126.com');??
  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(2,?'evan',?'123',?'fff@126.com');??
  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(3,?'kaka',?'cadg',?'fwsfg@126.com');??
  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(4,?'simle',?'cscs',?'fsaf@126.com');??
  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(5,?'arthur',?'csas',?'fsaff@126.com');??
  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(6,?'小德',?'yuh78',?'fdfas@126.com');??
  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(7,?'小小',?'cvff',?'fsaf@126.com');??
  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(8,?'林林之家',?'gvv',?'lin@126.com');??
  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(9,?'林炳文Evankaka',?'dfsc',?'ling2008@126.com');??
  • INSERT?INTO?t_user?(USER_ID,?USER_NAME,?USER_PASSWORD,?USER_EMAIL)?VALUES?(10,?'apple',?'uih6',?'ff@qq.com');
  • 二、工程創建

    1、Maven工程創建

    (1)新建


    (2)選擇快速框架


    (3)輸出項目名,包,記得選war(表示web項目,以后可以spingMVC連起來用)


    (4)創建好之后?



    (5)檢查下

    這三個地方JDK的版本一定要一樣!!!!




    三、sping+mybatis配置

    1、整個工程目錄如下:


    2、POM文件

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.lin</groupId> <artifactId>ssm_project</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <properties> <!-- spring版本號 --> <spring.version>3.2.8.RELEASE</spring.version> <!-- log4j日志文件管理包版本 --> <slf4j.version>1.6.6</slf4j.version> <log4j.version>1.2.12</log4j.version> <!-- junit版本號 --> <junit.version>4.10</junit.version> <!-- mybatis版本號 --> <mybatis.version>3.2.1</mybatis.version> </properties> <dependencies> <!-- 添加Spring依賴 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <!--單元測試依賴 --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <!-- 日志文件管理包 --> <!-- log start --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> <!-- log end --> <!--spring單元測試依賴 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <!--mybatis依賴 --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>${mybatis.version}</version> </dependency> <!-- mybatis/spring包 --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.2.0</version> </dependency> <!-- mysql驅動包 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.29</version> </dependency> </dependencies> </project>

    3、java代碼-------src/main/java

    目錄如下:


    (1)User.java

    對應數據庫中表的字段,放在src/main/java下的包com.lin.domain


    package com.lin.domain; /** * User映射類 * */ public class User { private Integer userId; private String userName; private String userPassword; private String userEmail; public Integer getUserId() { return userId; } public void setUserId(Integer userId) { this.userId = userId; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getUserPassword() { return userPassword; } public void setUserPassword(String userPassword) { this.userPassword = userPassword; } public String getUserEmail() { return userEmail; } public void setUserEmail(String userEmail) { this.userEmail = userEmail; } @Override public String toString() { return "User [userId=" + userId + ", userName=" + userName + ", userPassword=" + userPassword + ", userEmail=" + userEmail + "]"; } }

    (2)UserDao.java

    Dao接口類,用來對應mapper文件。放在src/main/java下的包com.lin.dao,內容如下:

    package com.lin.dao; import com.lin.domain.User; /** * 功能概要:User的DAO類 * * @author linbingwen * @since 2015年9月28日 */ public interface UserDao { /** * * @param userId * @return */ public User selectUserById(Integer userId); }

    (2)UserService.java和UserServiceImpl.java

    service接口類和實現類,放在src/main/java下的包com.lin.service,內容如下:

    UserService.java

    package com.lin.service; import org.springframework.stereotype.Service; import com.lin.domain.User; /** * 功能概要:UserService接口類 * */ public interface UserService { User selectUserById(Integer userId); } UserServiceImpl.java
    package com.lin.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.lin.dao.UserDao; import com.lin.domain.User; /** * 功能概要:UserService實現類 * * */ @Service public class UserServiceImpl implements UserService{ @Autowired private UserDao userDao; public User selectUserById(Integer userId) { return userDao.selectUserById(userId); } }
    (4)mapper文件

    用來和dao文件對應,放在src/main/java下的com.lin.mapper包下

    <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.lin.dao.UserDao"> <!--設置domain類和數據庫中表的字段一一對應,注意數據庫字段和domain類中的字段名稱不致,此處一定要!--> <resultMap id="BaseResultMap" type="com.lin.domain.User"> <id column="USER_ID" property="userId" jdbcType="INTEGER" /> <result column="USER_NAME" property="userName" jdbcType="CHAR" /> <result column="USER_PASSWORD" property="userPassword" jdbcType="CHAR" /> <result column="USER_EMAIL" property="userEmail" jdbcType="CHAR" /> </resultMap> <!-- 查詢單條記錄 --> <select id="selectUserById" parameterType="int" resultMap="BaseResultMap"> SELECT * FROM t_user WHERE USER_ID = #{userId} </select> </mapper>
    4、資源配置-------src/main/resources ?目錄:



    (1)mybatis配置文件

    這里沒有什么內容,因為都被放到application.xml中去了,放在src/main/resources下的mybatis文件夾下

    mybatis-config.xml內容如下:

    <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> </configuration>

    (2)數據源配置jdbc.properties

    放在src/main/resources下的propertiesy文件夾下

    jdbc_driverClassName=com.mysql.jdbc.Driver jdbc_url=jdbc:mysql://localhost:3306/lxlbase jdbc_username=root jdbc_password=lxl

    (3)Spring配置

    這是最重要的:application.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" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <!-- 引入jdbc配置文件 --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:properties/*.properties</value> <!--要是有多個配置文件,只需在這里繼續添加即可 --> </list> </property> </bean> <!-- 配置數據源 --> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <!-- 不使用properties來配置 --> <!-- <property name="driverClassName" value="com.mysql.jdbc.Driver" /> <property name="url" value="jdbc:mysql://localhost:3306/learning" /> <property name="username" value="root" /> <property name="password" value="christmas258@" /> --> <!-- 使用properties來配置 --> <property name="driverClassName"> <value>${jdbc_driverClassName}</value> </property> <property name="url"> <value>${jdbc_url}</value> </property> <property name="username"> <value>${jdbc_username}</value> </property> <property name="password"> <value>${jdbc_password}</value> </property> </bean> <!-- 自動掃描了所有的XxxxMapper.xml對應的mapper接口文件,這樣就不用一個一個手動配置Mpper的映射了,只要Mapper接口類和Mapper映射文件對應起來就可以了。 --> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.lin.dao" /> </bean> <!-- 配置Mybatis的文件 ,mapperLocations配置**Mapper.xml文件位置,configLocation配置mybatis-config文件位置--> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <property name="mapperLocations" value="classpath*:com/lin/mapper/**/*.xml"/> <property name="configLocation" value="classpath:mybatis/mybatis-config.xml" /> <!-- <property name="typeAliasesPackage" value="com.tiantian.ckeditor.model" /> --> </bean> <!-- 自動掃描注解的bean --> <context:component-scan base-package="com.lin.service" /> </beans>

    (4)日志打印log4j.properties

    就放在src/main/resources

    log4j.rootLogger=DEBUG,Console,Stdout #Console log4j.appender.Console=org.apache.log4j.ConsoleAppender log4j.appender.Console.layout=org.apache.log4j.PatternLayout log4j.appender.Console.layout.ConversionPattern=%d [%t] %-5p [%c] - %m%n log4j.logger.java.sql.ResultSet=INFO log4j.logger.org.apache=INFO log4j.logger.java.sql.Connection=DEBUG log4j.logger.java.sql.Statement=DEBUG log4j.logger.java.sql.PreparedStatement=DEBUG log4j.appender.Stdout = org.apache.log4j.DailyRollingFileAppender log4j.appender.Stdout.File = E://logs/log.log log4j.appender.Stdout.Append = true log4j.appender.Stdout.Threshold = DEBUG log4j.appender.Stdout.layout = org.apache.log4j.PatternLayout log4j.appender.Stdout.layout.ConversionPattern = %-d{yyyy-MM-dd HH:mm:ss} [ %t:%r ] - [ %p ] %m%n

    四、單元測試

    ?上面的配置完好,接下來就是測驗成功

    整個目錄 如下:


    (1)測試基類

    package com.lin.baseTest; import org.junit.runner.RunWith; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; /** * 功能概要: * */ //指定bean注入的配置文件 @ContextConfiguration(locations = { "classpath:application.xml" }) //使用標準的JUnit @RunWith注釋來告訴JUnit使用Spring TestRunner @RunWith(SpringJUnit4ClassRunner.class) public abstract class SpringTestCase extends AbstractJUnit4SpringContextTests{ protected Logger logger = LoggerFactory.getLogger(getClass()); }
    (2)測試類

    package com.lin.service; import org.apache.log4j.Logger; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import com.lin.baseTest.SpringTestCase; import com.lin.domain.User; /** * 功能概要:UserService單元測試 * */ public class UserServiceTest extends SpringTestCase { @Autowired private UserService userService; Logger logger = Logger.getLogger(UserServiceTest.class); @Test public void selectUserByIdTest(){ User user = userService.selectUserById(10); logger.debug("查找結果" + user); } }
    選中selectUserByIdTest,然后右鍵如下運行



    ***************************************************************************************************************************************************************************************

    注意:

    要是jdk1.8 那么spring 版本需要4.0以上

    在文件 pom修改 (這里就隨意選擇4.1.5)

    <!-- spring版本號 --> <spring.version>4.1.5.RELEASE</spring.version> application.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" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <!-- 引入jdbc配置文件 --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:properties/*.properties</value> <!--要是有多個配置文件,只需在這里繼續添加即可 --> </list> </property> </bean>

    #################################################################################################################################

    運行結果:(以jdk1.8為例)

    2017-06-03 20:09:04,035 [main] DEBUG [org.springframework.test.context.junit4.SpringJUnit4ClassRunner] - SpringJUnit4ClassRunner constructor called with [class com.lin.service.UserServiceTest].
    ? 2017-06-03 20:09:04,267 [main] DEBUG [org.springframework.test.context.BootstrapUtils] - Instantiating TestContextBootstrapper from class [org.springframework.test.context.support.DefaultTestContextBootstrapper]
    ? 2017-06-03 20:09:04,387 [main] DEBUG [org.springframework.test.context.support.AbstractDelegatingSmartContextLoader] - Delegating to GenericXmlContextLoader to process context configuration [ContextConfigurationAttributes@2aaf7cc2 declaringClass = 'com.lin.baseTest.SpringTestCase', classes = '{}', locations = '{classpath:application.xml}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader'].
    ? 2017-06-03 20:09:04,419 [main] DEBUG [org.springframework.test.context.support.ActiveProfilesUtils] - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,538 [main] INFO ?[org.springframework.test.context.support.DefaultTestContextBootstrapper] - Could not instantiate TestExecutionListener [org.springframework.test.context.web.ServletTestExecutionListener]. Specify custom listener classes or make the default listener classes (and their required dependencies) available. Offending class: [javax/servlet/ServletContext]
    ? 2017-06-03 20:09:04,557 [main] INFO ?[org.springframework.test.context.support.DefaultTestContextBootstrapper] - Using TestExecutionListeners: [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@35bbe5e8, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2c8d66b2]
    ? 2017-06-03 20:09:04,559 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,560 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,561 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,561 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,631 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,632 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,633 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,633 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,634 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,635 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,652 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,652 [main] DEBUG [org.springframework.test.annotation.ProfileValueUtils] - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.lin.service.UserServiceTest]
    ? 2017-06-03 20:09:04,737 [main] DEBUG [org.springframework.test.context.support.DependencyInjectionTestExecutionListener] - Performing dependency injection for test context [[DefaultTestContext@7f690630 testClass = UserServiceTest, testInstance = com.lin.service.UserServiceTest@edf4efb, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2f7a2457 testClass = UserServiceTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]].
    ? 2017-06-03 20:09:04,738 [main] DEBUG [org.springframework.test.context.support.AbstractDelegatingSmartContextLoader] - Delegating to GenericXmlContextLoader to load context from [MergedContextConfiguration@2f7a2457 testClass = UserServiceTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
    ? 2017-06-03 20:09:04,738 [main] DEBUG [org.springframework.test.context.support.AbstractGenericContextLoader] - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@2f7a2457 testClass = UserServiceTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
    ? 2017-06-03 20:09:05,271 [main] DEBUG [org.springframework.core.env.StandardEnvironment] - Adding [systemProperties] PropertySource with lowest search precedence
    ? 2017-06-03 20:09:05,272 [main] DEBUG [org.springframework.core.env.StandardEnvironment] - Adding [systemEnvironment] PropertySource with lowest search precedence
    ? 2017-06-03 20:09:05,273 [main] DEBUG [org.springframework.core.env.StandardEnvironment] - Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
    ? 2017-06-03 20:09:05,498 [main] INFO ?[org.springframework.beans.factory.xml.XmlBeanDefinitionReader] - Loading XML bean definitions from class path resource [application.xml]
    ? 2017-06-03 20:09:05,839 [main] DEBUG [org.springframework.beans.factory.xml.DefaultDocumentLoader] - Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
    ? 2017-06-03 20:09:06,365 [main] DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] - Loading schema mappings from [META-INF/spring.schemas]
    ? 2017-06-03 20:09:06,446 [main] DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] - Loaded schema mappings: {http://www.springframework.org/schema/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd, http://www.springframework.org/schema/aop/spring-aop-4.1.xsd=org/springframework/aop/config/spring-aop-4.1.xsd, http://www.springframework.org/schema/context/spring-context-3.1.xsd=org/springframework/context/config/spring-context-3.1.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-4.1.xsd=org/springframework/jdbc/config/spring-jdbc-4.1.xsd, http://www.springframework.org/schema/util/spring-util-3.0.xsd=org/springframework/beans/factory/xml/spring-util-3.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd=org/springframework/web/servlet/config/spring-mvc-4.1.xsd, http://mybatis.org/schema/mybatis-spring-1.2.xsd=org/mybatis/spring/config/mybatis-spring-1.2.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-4.1.xsd, http://www.springframework.org/schema/aop/spring-aop-3.2.xsd=org/springframework/aop/config/spring-aop-3.2.xsd, http://www.springframework.org/schema/lang/spring-lang-4.1.xsd=org/springframework/scripting/config/spring-lang-4.1.xsd, http://www.springframework.org/schema/context/spring-context-4.0.xsd=org/springframework/context/config/spring-context-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd=org/springframework/web/servlet/config/spring-mvc-3.2.xsd, http://www.springframework.org/schema/tool/spring-tool-4.1.xsd=org/springframework/beans/factory/xml/spring-tool-4.1.xsd, http://www.springframework.org/schema/lang/spring-lang-3.2.xsd=org/springframework/scripting/config/spring-lang-3.2.xsd, http://www.springframework.org/schema/cache/spring-cache-3.2.xsd=org/springframework/cache/config/spring-cache-3.2.xsd, http://www.springframework.org/schema/jee/spring-jee-4.1.xsd=org/springframework/ejb/config/spring-jee-4.1.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd=org/springframework/jdbc/config/spring-jdbc-3.1.xsd, http://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.2.xsd=org/springframework/beans/factory/xml/spring-tool-3.2.xsd, http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-4.1.xsd, http://www.springframework.org/schema/cache/spring-cache-4.1.xsd=org/springframework/cache/config/spring-cache-4.1.xsd, http://www.springframework.org/schema/aop/spring-aop-4.0.xsd=org/springframework/aop/config/spring-aop-4.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.2.xsd=org/springframework/ejb/config/spring-jee-3.2.xsd, http://www.springframework.org/schema/context/spring-context-3.0.xsd=org/springframework/context/config/spring-context-3.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd=org/springframework/jdbc/config/spring-jdbc-4.0.xsd, http://www.springframework.org/schema/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd, http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd=org/springframework/web/servlet/config/spring-mvc-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans-3.2.xsd=org/springframework/beans/factory/xml/spring-beans-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop-3.1.xsd=org/springframework/aop/config/spring-aop-3.1.xsd, http://www.springframework.org/schema/lang/spring-lang-4.0.xsd=org/springframework/scripting/config/spring-lang-4.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc.xsd=org/springframework/web/servlet/config/spring-mvc-4.1.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd=org/springframework/web/servlet/config/spring-mvc-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-4.1.xsd=org/springframework/beans/factory/xml/spring-beans-4.1.xsd, http://www.springframework.org/schema/tool/spring-tool-4.0.xsd=org/springframework/beans/factory/xml/spring-tool-4.0.xsd, http://www.springframework.org/schema/tx/spring-tx-3.2.xsd=org/springframework/transaction/config/spring-tx-3.2.xsd, http://www.springframework.org/schema/lang/spring-lang-3.1.xsd=org/springframework/scripting/config/spring-lang-3.1.xsd, http://www.springframework.org/schema/cache/spring-cache-3.1.xsd=org/springframework/cache/config/spring-cache-3.1.xsd, http://www.springframework.org/schema/jee/spring-jee-4.0.xsd=org/springframework/ejb/config/spring-jee-4.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd=org/springframework/jdbc/config/spring-jdbc-3.0.xsd, http://www.springframework.org/schema/task/spring-task-4.1.xsd=org/springframework/scheduling/config/spring-task-4.1.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc.xsd=org/springframework/jdbc/config/spring-jdbc-4.1.xsd, http://www.springframework.org/schema/tool/spring-tool-3.1.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd, http://www.springframework.org/schema/tx/spring-tx-4.1.xsd=org/springframework/transaction/config/spring-tx-4.1.xsd, http://www.springframework.org/schema/cache/spring-cache-4.0.xsd=org/springframework/cache/config/spring-cache-4.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.1.xsd=org/springframework/ejb/config/spring-jee-3.1.xsd, http://www.springframework.org/schema/task/spring-task-3.2.xsd=org/springframework/scheduling/config/spring-task-3.2.xsd, http://www.springframework.org/schema/beans/spring-beans-3.1.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd, http://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-4.1.xsd, http://www.springframework.org/schema/aop/spring-aop-3.0.xsd=org/springframework/aop/config/spring-aop-3.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd=org/springframework/web/servlet/config/spring-mvc-3.0.xsd, http://www.springframework.org/schema/beans/spring-beans-4.0.xsd=org/springframework/beans/factory/xml/spring-beans-4.0.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-4.1.xsd, http://mybatis.org/schema/mybatis-spring.xsd=org/mybatis/spring/config/mybatis-spring-1.2.xsd, http://www.springframework.org/schema/tx/spring-tx-3.1.xsd=org/springframework/transaction/config/spring-tx-3.1.xsd, http://www.springframework.org/schema/lang/spring-lang-3.0.xsd=org/springframework/scripting/config/spring-lang-3.0.xsd, http://www.springframework.org/schema/context/spring-context-2.5.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/task/spring-task-4.0.xsd=org/springframework/scheduling/config/spring-task-4.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.0.xsd=org/springframework/beans/factory/xml/spring-tool-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-4.0.xsd=org/springframework/transaction/config/spring-tx-4.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd, http://www.springframework.org/schema/jee/spring-jee-3.0.xsd=org/springframework/ejb/config/spring-jee-3.0.xsd, http://www.springframework.org/schema/util/spring-util-4.1.xsd=org/springframework/beans/factory/xml/spring-util-4.1.xsd, http://www.springframework.org/schema/task/spring-task-3.1.xsd=org/springframework/scheduling/config/spring-task-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-4.1.xsd, http://www.springframework.org/schema/aop/spring-aop-2.5.xsd=org/springframework/aop/config/spring-aop-2.5.xsd, http://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd, http://www.springframework.org/schema/util/spring-util-3.2.xsd=org/springframework/beans/factory/xml/spring-util-3.2.xsd, http://www.springframework.org/schema/task/spring-task.xsd=org/springframework/scheduling/config/spring-task-4.1.xsd, http://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd, http://www.springframework.org/schema/tx/spring-tx-3.0.xsd=org/springframework/transaction/config/spring-tx-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.0.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd, http://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/util/spring-util-4.0.xsd=org/springframework/beans/factory/xml/spring-util-4.0.xsd, http://www.springframework.org/schema/task/spring-task-3.0.xsd=org/springframework/scheduling/config/spring-task-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-4.1.xsd, http://www.springframework.org/schema/context/spring-context-3.2.xsd=org/springframework/context/config/spring-context-3.2.xsd, http://www.springframework.org/schema/util/spring-util-3.1.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd, http://www.springframework.org/schema/cache/spring-cache.xsd=org/springframework/cache/config/spring-cache-4.1.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-4.1.xsd, http://www.springframework.org/schema/context/spring-context-4.1.xsd=org/springframework/context/config/spring-context-4.1.xsd, http://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd=org/springframework/jdbc/config/spring-jdbc-3.2.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-4.1.xsd}
    ? 2017-06-03 20:09:06,449 [main] DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] - Found XML schema [http://www.springframework.org/schema/beans/spring-beans-4.0.xsd] in classpath: org/springframework/beans/factory/xml/spring-beans-4.0.xsd
    ? 2017-06-03 20:09:06,562 [main] DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] - Found XML schema [http://www.springframework.org/schema/context/spring-context-4.0.xsd] in classpath: org/springframework/context/config/spring-context-4.0.xsd
    ? 2017-06-03 20:09:06,593 [main] DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] - Found XML schema [http://www.springframework.org/schema/tool/spring-tool-4.0.xsd] in classpath: org/springframework/beans/factory/xml/spring-tool-4.0.xsd
    ? 2017-06-03 20:09:06,630 [main] DEBUG [org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader] - Loading bean definitions
    ? 2017-06-03 20:09:06,799 [main] DEBUG [org.springframework.beans.factory.xml.BeanDefinitionParserDelegate] - Neither XML 'id' nor 'name' specified - using generated bean name [org.mybatis.spring.mapper.MapperScannerConfigurer#0]
    ? 2017-06-03 20:09:06,884 [main] DEBUG [org.springframework.beans.factory.xml.DefaultNamespaceHandlerResolver] - Loaded NamespaceHandler mappings: {http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler, http://www.springframework.org/schema/mvc=org.springframework.web.servlet.config.MvcNamespaceHandler, http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler, http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler, http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler, http://www.springframework.org/schema/jdbc=org.springframework.jdbc.config.JdbcNamespaceHandler, http://www.springframework.org/schema/cache=org.springframework.cache.config.CacheNamespaceHandler, http://mybatis.org/schema/mybatis-spring=org.mybatis.spring.config.NamespaceHandler, http://www.springframework.org/schema/c=org.springframework.beans.factory.xml.SimpleConstructorNamespaceHandler, http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler, http://www.springframework.org/schema/task=org.springframework.scheduling.config.TaskNamespaceHandler, http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler, http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler}
    ? 2017-06-03 20:09:07,050 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Looking for matching resources in directory tree [D:\J2EE work\mavenSpring\target\test-classes\com\lin\service]
    ? 2017-06-03 20:09:07,051 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Searching directory [D:\J2EE work\mavenSpring\target\test-classes\com\lin\service] for files matching pattern [D:/J2EE work/mavenSpring/target/test-classes/com/lin/service/**/*.class]
    ? 2017-06-03 20:09:07,055 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Looking for matching resources in directory tree [D:\J2EE work\mavenSpring\target\classes\com\lin\service]
    ? 2017-06-03 20:09:07,055 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Searching directory [D:\J2EE work\mavenSpring\target\classes\com\lin\service] for files matching pattern [D:/J2EE work/mavenSpring/target/classes/com/lin/service/**/*.class]
    ? 2017-06-03 20:09:07,056 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Resolved location pattern [classpath*:com/lin/service/**/*.class] to resources [file [D:\J2EE work\mavenSpring\target\test-classes\com\lin\service\UserServiceTest.class], file [D:\J2EE work\mavenSpring\target\classes\com\lin\service\UserService.class], file [D:\J2EE work\mavenSpring\target\classes\com\lin\service\UserServiceImpl.class]]
    ? 2017-06-03 20:09:07,081 [main] DEBUG [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] - Identified candidate component class: file [D:\J2EE work\mavenSpring\target\classes\com\lin\service\UserServiceImpl.class]
    ? 2017-06-03 20:09:07,163 [main] DEBUG [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] - Loaded 9 bean definitions from location pattern [classpath:application.xml]
    ? 2017-06-03 20:09:07,199 [main] INFO ?[org.springframework.context.support.GenericApplicationContext] - Refreshing org.springframework.context.support.GenericApplicationContext@15975490: startup date [Sat Jun 03 20:09:07 CST 2017]; root of context hierarchy
    ? 2017-06-03 20:09:07,199 [main] DEBUG [org.springframework.context.support.GenericApplicationContext] - Bean factory for org.springframework.context.support.GenericApplicationContext@15975490: org.springframework.beans.factory.support.DefaultListableBeanFactory@543e710e: defining beans [propertyConfigurer,dataSource,org.mybatis.spring.mapper.MapperScannerConfigurer#0,sqlSessionFactory,userServiceImpl,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor]; root of factory hierarchy
    ? 2017-06-03 20:09:07,262 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
    ? 2017-06-03 20:09:07,262 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
    ? 2017-06-03 20:09:07,297 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references
    ? 2017-06-03 20:09:07,299 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
    ? 2017-06-03 20:09:07,390 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
    ? 2017-06-03 20:09:07,390 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
    ? 2017-06-03 20:09:07,390 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0' to allow for resolving potential circular references
    ? 2017-06-03 20:09:07,612 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Invoking afterPropertiesSet() on bean with name 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
    ? 2017-06-03 20:09:07,612 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
    ? 2017-06-03 20:09:07,615 [main] DEBUG [org.springframework.core.env.StandardEnvironment] - Adding [systemProperties] PropertySource with lowest search precedence
    ? 2017-06-03 20:09:07,615 [main] DEBUG [org.springframework.core.env.StandardEnvironment] - Adding [systemEnvironment] PropertySource with lowest search precedence
    ? 2017-06-03 20:09:07,615 [main] DEBUG [org.springframework.core.env.StandardEnvironment] - Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
    ? 2017-06-03 20:09:07,616 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Looking for matching resources in directory tree [D:\J2EE work\mavenSpring\target\classes\com\lin\dao]
    ? 2017-06-03 20:09:07,617 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Searching directory [D:\J2EE work\mavenSpring\target\classes\com\lin\dao] for files matching pattern [D:/J2EE work/mavenSpring/target/classes/com/lin/dao/**/*.class]
    ? 2017-06-03 20:09:07,617 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Resolved location pattern [classpath*:com/lin/dao/**/*.class] to resources [file [D:\J2EE work\mavenSpring\target\classes\com\lin\dao\UserDao.class]]
    ? 2017-06-03 20:09:07,617 [main] DEBUG [org.mybatis.spring.mapper.ClassPathMapperScanner] - Identified candidate component class: file [D:\J2EE work\mavenSpring\target\classes\com\lin\dao\UserDao.class]
    ? 2017-06-03 20:09:07,618 [main] DEBUG [org.mybatis.spring.mapper.ClassPathMapperScanner] - Creating MapperFactoryBean with name 'userDao' and 'com.lin.dao.UserDao' mapperInterface
    ? 2017-06-03 20:09:07,619 [main] DEBUG [org.mybatis.spring.mapper.ClassPathMapperScanner] - Enabling autowire by type for MapperFactoryBean with name 'userDao'.
    ? 2017-06-03 20:09:07,621 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'propertyConfigurer'
    ? 2017-06-03 20:09:07,621 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'propertyConfigurer'
    ? 2017-06-03 20:09:07,622 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'propertyConfigurer' to allow for resolving potential circular references
    ? 2017-06-03 20:09:07,638 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Looking for matching resources in directory tree [D:\J2EE work\mavenSpring\target\classes\properties]
    ? 2017-06-03 20:09:07,638 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Searching directory [D:\J2EE work\mavenSpring\target\classes\properties] for files matching pattern [D:/J2EE work/mavenSpring/target/classes/properties/*.properties]
    ? 2017-06-03 20:09:07,639 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Resolved location pattern [classpath:properties/*.properties] to resources [file [D:\J2EE work\mavenSpring\target\classes\properties\jdbc.properties]]
    ? 2017-06-03 20:09:07,639 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'propertyConfigurer'
    ? 2017-06-03 20:09:07,639 [main] INFO ?[org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] - Loading properties file from file [D:\J2EE work\mavenSpring\target\classes\properties\jdbc.properties]
    ? 2017-06-03 20:09:07,703 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
    ? 2017-06-03 20:09:07,703 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
    ? 2017-06-03 20:09:07,705 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
    ? 2017-06-03 20:09:07,705 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
    ? 2017-06-03 20:09:07,705 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
    ? 2017-06-03 20:09:07,705 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
    ? 2017-06-03 20:09:07,706 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
    ? 2017-06-03 20:09:07,706 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
    ? 2017-06-03 20:09:07,709 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
    ? 2017-06-03 20:09:07,709 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
    ? 2017-06-03 20:09:07,769 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
    ? 2017-06-03 20:09:07,770 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
    ? 2017-06-03 20:09:07,770 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
    ? 2017-06-03 20:09:07,771 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
    ? 2017-06-03 20:09:07,771 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor' to allow for resolving potential circular references
    ? 2017-06-03 20:09:07,771 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
    ? 2017-06-03 20:09:07,771 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
    ? 2017-06-03 20:09:07,771 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
    ? 2017-06-03 20:09:07,772 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor' to allow for resolving potential circular references
    ? 2017-06-03 20:09:07,772 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
    ? 2017-06-03 20:09:07,851 [main] DEBUG [org.springframework.context.support.GenericApplicationContext] - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@358ee631]
    ? 2017-06-03 20:09:07,870 [main] DEBUG [org.springframework.context.support.GenericApplicationContext] - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@3901d134]
    ? 2017-06-03 20:09:07,910 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@543e710e: defining beans [propertyConfigurer,dataSource,org.mybatis.spring.mapper.MapperScannerConfigurer#0,sqlSessionFactory,userServiceImpl,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor,userDao]; root of factory hierarchy
    ? 2017-06-03 20:09:07,910 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'propertyConfigurer'
    ? 2017-06-03 20:09:07,910 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'dataSource'
    ? 2017-06-03 20:09:07,910 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'dataSource'
    ? 2017-06-03 20:09:08,008 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'dataSource' to allow for resolving potential circular references
    ? 2017-06-03 20:09:08,079 [main] INFO ?[org.springframework.jdbc.datasource.DriverManagerDataSource] - Loaded JDBC driver: com.mysql.jdbc.Driver
    ? 2017-06-03 20:09:08,080 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'dataSource'
    ? 2017-06-03 20:09:08,080 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'org.mybatis.spring.mapper.MapperScannerConfigurer#0'
    ? 2017-06-03 20:09:08,081 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'sqlSessionFactory'
    ? 2017-06-03 20:09:08,081 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'sqlSessionFactory'
    ? 2017-06-03 20:09:08,121 [main] DEBUG [org.apache.ibatis.logging.LogFactory] - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
    ? 2017-06-03 20:09:08,206 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'sqlSessionFactory' to allow for resolving potential circular references
    ? 2017-06-03 20:09:08,215 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'dataSource'
    ? 2017-06-03 20:09:08,216 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Looking for matching resources in directory tree [D:\J2EE work\mavenSpring\target\classes\com\lin\mapper]
    ? 2017-06-03 20:09:08,217 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Searching directory [D:\J2EE work\mavenSpring\target\classes\com\lin\mapper] for files matching pattern [D:/J2EE work/mavenSpring/target/classes/com/lin/mapper/**/*.xml]
    ? 2017-06-03 20:09:08,223 [main] DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] - Resolved location pattern [classpath*:com/lin/mapper/**/*.xml] to resources [file [D:\J2EE work\mavenSpring\target\classes\com\lin\mapper\UserMapper.xml]]
    ? 2017-06-03 20:09:08,225 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Invoking afterPropertiesSet() on bean with name 'sqlSessionFactory'
    ? 2017-06-03 20:09:08,514 [main] DEBUG [org.mybatis.spring.SqlSessionFactoryBean] - Parsed configuration file: 'class path resource [mybatis/mybatis-config.xml]'
    ? 2017-06-03 20:09:08,516 [main] DEBUG [org.springframework.jdbc.datasource.DriverManagerDataSource] - Creating new JDBC DriverManager Connection to [jdbc:mysql://localhost:3306/lxlbase]
    ? 2017-06-03 20:09:09,591 [main] DEBUG [org.mybatis.spring.SqlSessionFactoryBean] - Parsed mapper file: 'file [D:\J2EE work\mavenSpring\target\classes\com\lin\mapper\UserMapper.xml]'
    ? 2017-06-03 20:09:09,592 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'sqlSessionFactory'
    ? 2017-06-03 20:09:09,593 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'userServiceImpl'
    ? 2017-06-03 20:09:09,593 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'userServiceImpl'
    ? 2017-06-03 20:09:09,595 [main] DEBUG [org.springframework.beans.factory.annotation.InjectionMetadata] - Registered injected element on class [com.lin.service.UserServiceImpl]: AutowiredFieldElement for private com.lin.dao.UserDao com.lin.service.UserServiceImpl.userDao
    ? 2017-06-03 20:09:09,595 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'userServiceImpl' to allow for resolving potential circular references
    ? 2017-06-03 20:09:09,597 [main] DEBUG [org.springframework.beans.factory.annotation.InjectionMetadata] - Processing injected element of bean 'userServiceImpl': AutowiredFieldElement for private com.lin.dao.UserDao com.lin.service.UserServiceImpl.userDao
    ? 2017-06-03 20:09:09,599 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating shared instance of singleton bean 'userDao'
    ? 2017-06-03 20:09:09,599 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Creating instance of bean 'userDao'
    ? 2017-06-03 20:09:09,600 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Eagerly caching bean 'userDao' to allow for resolving potential circular references
    ? 2017-06-03 20:09:09,617 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning eagerly cached instance of singleton bean 'userDao' that is not fully initialized yet - a consequence of a circular reference
    ? 2017-06-03 20:09:09,618 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'sqlSessionFactory'
    ? 2017-06-03 20:09:09,618 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Autowiring by type from bean name 'userDao' via property 'sqlSessionFactory' to bean named 'sqlSessionFactory'
    ? 2017-06-03 20:09:09,629 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Invoking afterPropertiesSet() on bean with name 'userDao'
    ? 2017-06-03 20:09:09,629 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'userDao'
    ? 2017-06-03 20:09:09,630 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'userDao'
    ? 2017-06-03 20:09:09,633 [main] DEBUG [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor] - Autowiring by type from bean name 'userServiceImpl' to bean named 'userDao'
    ? 2017-06-03 20:09:09,633 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Finished creating instance of bean 'userServiceImpl'
    ? 2017-06-03 20:09:09,634 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
    ? 2017-06-03 20:09:09,634 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
    ? 2017-06-03 20:09:09,634 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
    ? 2017-06-03 20:09:09,634 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
    ? 2017-06-03 20:09:09,634 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
    ? 2017-06-03 20:09:09,634 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
    ? 2017-06-03 20:09:09,635 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'userDao'
    ? 2017-06-03 20:09:09,649 [main] DEBUG [org.springframework.context.support.GenericApplicationContext] - Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [org.springframework.context.support.DefaultLifecycleProcessor@11fc564b]
    ? 2017-06-03 20:09:09,650 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'lifecycleProcessor'
    ? 2017-06-03 20:09:09,716 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'sqlSessionFactory'
    ? 2017-06-03 20:09:09,780 [main] DEBUG [org.springframework.core.env.PropertySourcesPropertyResolver] - Searching for key 'spring.liveBeansView.mbeanDomain' in [systemProperties]
    ? 2017-06-03 20:09:09,780 [main] DEBUG [org.springframework.core.env.PropertySourcesPropertyResolver] - Searching for key 'spring.liveBeansView.mbeanDomain' in [systemEnvironment]
    ? 2017-06-03 20:09:09,780 [main] DEBUG [org.springframework.core.env.PropertySourcesPropertyResolver] - Could not find key 'spring.liveBeansView.mbeanDomain' in any property source. Returning [null]
    ? 2017-06-03 20:09:09,812 [main] DEBUG [org.springframework.test.context.DefaultCacheAwareContextLoaderDelegate] - Storing ApplicationContext in cache under key [[MergedContextConfiguration@2f7a2457 testClass = UserServiceTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
    ? 2017-06-03 20:09:09,812 [main] DEBUG [org.springframework.test.context.cache] - Spring test ApplicationContext cache statistics: [ContextCache@55740540 size = 1, hitCount = 0, missCount = 1, parentContextCount = 0]
    ? 2017-06-03 20:09:09,816 [main] DEBUG [org.springframework.beans.factory.annotation.InjectionMetadata] - Processing injected element of bean 'com.lin.service.UserServiceTest': AutowiredFieldElement for private com.lin.service.UserService com.lin.service.UserServiceTest.userService
    ? 2017-06-03 20:09:09,859 [main] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'userServiceImpl'
    ? 2017-06-03 20:09:09,859 [main] DEBUG [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor] - Autowiring by type from bean name 'com.lin.service.UserServiceTest' to bean named 'userServiceImpl'
    ? 2017-06-03 20:09:09,903 [main] DEBUG [org.mybatis.spring.SqlSessionUtils] - Creating a new SqlSession
    ? 2017-06-03 20:09:10,128 [main] DEBUG [org.mybatis.spring.SqlSessionUtils] - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@44a7bfbc] was not registered for synchronization because synchronization is not active
    ? 2017-06-03 20:09:10,354 [main] DEBUG [org.springframework.jdbc.datasource.DataSourceUtils] - Fetching JDBC Connection from DataSource
    ? 2017-06-03 20:09:10,354 [main] DEBUG [org.springframework.jdbc.datasource.DriverManagerDataSource] - Creating new JDBC DriverManager Connection to [jdbc:mysql://localhost:3306/lxlbase]
    ? 2017-06-03 20:09:10,434 [main] DEBUG [org.mybatis.spring.transaction.SpringManagedTransaction] - JDBC Connection [com.mysql.jdbc.JDBC4Connection@2df9b86] will not be managed by Spring
    ? 2017-06-03 20:09:10,437 [main] DEBUG [com.lin.dao.UserDao.selectUserById] - ooo Using Connection [com.mysql.jdbc.JDBC4Connection@2df9b86]
    ? 2017-06-03 20:09:10,459 [main] DEBUG [com.lin.dao.UserDao.selectUserById] - ==> ?Preparing: SELECT * FROM t_user WHERE USER_ID = ??
    ? 2017-06-03 20:09:10,599 [main] DEBUG [com.lin.dao.UserDao.selectUserById] - ==> Parameters: 1(Integer)

    ? 2017-06-03 20:09:11,615 [main] DEBUG [org.mybatis.spring.SqlSessionUtils] - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@44a7bfbc]
    ? 2017-06-03 20:09:11,615 [main] DEBUG [org.springframework.jdbc.datasource.DataSourceUtils] - Returning JDBC Connection to DataSource
    ? 2017-06-03 20:09:11,616 [main] DEBUG [com.lin.service.UserServiceTest] - 查找結果User [userId=1, userName=JACK, userPassword=1234, userEmail=JACK@.COM]
    ? 2017-06-03 20:09:11,616 [main] DEBUG [org.springframework.test.context.support.DirtiesContextTestExecutionListener] - After test method: context
    [DefaultTestContext@7f690630 testClass = UserServiceTest, testInstance = com.lin.service.UserServiceTest@edf4efb, testMethod = selectUserByIdTest@UserServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2f7a2457 testClass = UserServiceTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]], class dirties context [false], class mode [null], method dirties context [false].
    ? 2017-06-03 20:09:11,617 [main] DEBUG [org.springframework.test.context.support.DirtiesContextTestExecutionListener] - After test class: context [DefaultTestContext@7f690630 testClass = UserServiceTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2f7a2457 testClass = UserServiceTest, locations = '{classpath:application.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]], dirtiesContext [false].
    ? 2017-06-03 20:09:11,668 [Thread-0] INFO ?[org.springframework.context.support.GenericApplicationContext] - Closing org.springframework.context.support.GenericApplicationContext@15975490: startup date [Sat Jun 03 20:09:07 CST 2017]; root of context hierarchy
    ? 2017-06-03 20:09:11,669 [Thread-0] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'sqlSessionFactory'
    ? 2017-06-03 20:09:11,669 [Thread-0] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instance of singleton bean 'lifecycleProcessor'
    ? 2017-06-03 20:09:11,669 [Thread-0] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@543e710e: defining beans [propertyConfigurer,dataSource,org.mybatis.spring.mapper.MapperScannerConfigurer#0,sqlSessionFactory,userServiceImpl,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor,userDao]; root of factory hierarchy
    ? 2017-06-03 20:09:11,670 [Thread-0] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Retrieved dependent beans for bean 'userServiceImpl': [com.lin.service.UserServiceTest]
    ??

    結果是正確的:數據庫數據如下



    總結

    以上是生活随笔為你收集整理的springMVC 与mybatis 整合 demo(maven 工程)的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

    久久精品麻豆 | 久久永久免费 | 97网| 精品视频在线观看 | 91爱爱视频| 91九色成人蝌蚪首页 | 婷婷六月天综合 | 亚洲精品乱码白浆高清久久久久久 | 国产精品女同一区二区三区久久夜 | 国产成人精品一区二区三区福利 | 日韩视频a | 最新成人av | 欧美在线视频第一页 | 91九色蝌蚪视频在线 | 免费高清在线视频一区· | 麻豆91小视频 | 免费合欢视频成人app | 高清免费av在线 | 国产一级二级在线播放 | 国产高清在线观看av | 成人毛片一区 | 色婷婷激情电影 | 亚洲欧美视频在线观看 | 懂色av一区二区三区蜜臀 | 精品久久久久国产免费第一页 | 国产精品亚洲片在线播放 | 91探花系列在线播放 | 91黄色在线视频 | 亚洲视频一区二区三区在线观看 | 中文字幕av网站 | 亚洲精品 在线视频 | 999久久久久久久久6666 | 久操久| 91在线免费播放视频 | 天天玩天天操天天射 | 中文字幕婷婷 | 国产精品久久麻豆 | 园产精品久久久久久久7电影 | 在线视频福利 | 狠狠色丁香婷婷综合久小说久 | 一级黄色片毛片 | 97爱| 亚洲精品视频在线播放 | 久久久久久久久久久久电影 | 日韩精品播放 | 亚洲精选视频免费看 | 日韩av手机在线看 | 日韩成人中文字幕 | 精品亚洲免费视频 | 免费av成人在线 | 九九热久久久 | 国产精品自产拍在线观看中文 | 欧美91av| 亚洲一区二区视频在线播放 | 亚洲激情视频在线 | 人人干干人人 | 五月婷婷av| 久久视频精品在线观看 | 国产视频在线观看一区二区 | 欧美激情精品久久久久久免费印度 | 91成人免费看 | 国产99在线免费 | 色婷婷丁香 | 一区av在线播放 | 五月婷婷丁香色 | 久久久影片 | 7777精品伊人久久久大香线蕉 | 色婷婷av一区二 | 91人人揉日日捏人人看 | 久久视频国产 | 欧美一级片在线播放 | 日韩一区二区三区不卡 | 91麻豆操| 国产精彩视频一区二区 | 96亚洲精品久久 | 黄在线免费观看 | 久久99欧美| 国产尤物在线观看 | 成年人网站免费在线观看 | 精品v亚洲v欧美v高清v | 国产99re| 国产精品正在播放 | 国产一区二区播放 | 国内揄拍国内精品 | 亚洲最大激情中文字幕 | 天堂资源在线观看视频 | 日韩精品中文字幕在线 | 国产成人在线网站 | 99精品美女 | 伊人导航| 国产成人精品久久久久 | 国产伦理久久 | 97超碰人人澡人人爱学生 | 国产福利av在线 | 久久av不卡| 99在线精品视频 | 亚洲精品短视频 | 激情网站免费观看 | 久久精品79国产精品 | 中文字幕中文字幕 | 国产精品9区 | 欧美色图一区 | 精品国产一区二区三区四区在线观看 | 久久综合在线 | 国产精品久久久毛片 | 久久不见久久见免费影院 | 精品视频在线视频 | 日本精品视频一区 | 国产精品99久久久久久大便 | 91黄色成人 | 天天se天天cao天天干 | 亚洲欧美日韩精品久久久 | 最近中文字幕免费大全 | 午夜婷婷在线观看 | 婷婷久草 | 国产91免费在线 | 91高清免费 | 97视频精品| 免费看污在线观看 | 国产视频一级 | 久久久亚洲国产精品麻豆综合天堂 | www.天天综合 | 久久精品影片 | 国产成人一级电影 | 成人av在线亚洲 | 91成品视频| 久视频在线播放 | 91视频啪 | 欧美日韩在线电影 | 久草在线免费播放 | japanesexxxhd奶水 国产一区二区在线免费观看 | 亚洲午夜精品久久久 | 日日爱网址| 黄色在线看网站 | 天天爱天天舔 | 亚洲电影一区二区 | 国产精品久久久久久久久久久免费 | 国产九九精品视频 | 亚洲爽爽网 | 日韩视频专区 | 色婷婷视频在线 | 欧美韩国日本在线 | 成人av电影免费在线播放 | 少妇bbr搡bbb搡bbb | 99爱在线观看 | 一级片在线| 青春草视频| 国产精品原创av片国产免费 | 国产高清在线免费视频 | 五月婷婷丁香在线观看 | 欧美激情视频在线观看免费 | 国产精品一二三 | 欧美日韩一区二区三区视频 | 国产精品久久久久久久毛片 | 丁香在线视频 | 天天射天天干天天 | 毛片网站在线观看 | 操操碰 | 超碰在线国产 | 91一区二区三区久久久久国产乱 | 麻豆视频在线免费 | 国产伦精品一区二区三区在线 | 午夜精品福利在线 | 日本少妇久久久 | 亚洲最大成人网4388xx | 人人超在线公开视频 | 国产又粗又猛又色又黄网站 | 日韩欧美视频免费看 | 69视频网站| 狠狠色狠狠综合久久 | 成人av电影在线观看 | 久久久国内精品 | 成人黄色电影视频 | av网站手机在线观看 | 欧美日韩免费观看一区=区三区 | 丁香花在线视频观看免费 | 香蕉视频91 | 国产精品入口a级 | 色婷婷综合视频在线观看 | 国产精品久久久久影院日本 | 国产69久久精品成人看 | 成人小视频免费在线观看 | 91.麻豆视频 | 天海冀一区二区三区 | 国产91全国探花系列在线播放 | 亚洲国产人午在线一二区 | 在线观看视频亚洲 | 91激情视频在线观看 | 免费国产一区二区视频 | 高清av免费观看 | 肉色欧美久久久久久久免费看 | 国产精品久久久久久久久久久久久 | www.狠狠插.com | 国产欧美综合视频 | 久久国产乱| 麻豆视频免费在线 | 在线看国产一区 | 婷婷六月天综合 | 99视频一区二区 | 久久精品欧美 | 欧美ⅹxxxxxx| 亚洲日本精品视频 | 99精品观看 | 欧美日韩一区二区在线 | 中文字幕色婷婷在线视频 | 日韩av手机在线看 | 96av在线视频| 日韩精品综合在线 | 国产一级二级在线观看 | 日韩电影中文,亚洲精品乱码 | 欧美日韩调教 | 一级α片| 日韩在线播放视频 | 91av在线视频免费观看 | 精品国产乱码久久久久久天美 | 激情婷婷综合 | 精品国产一区二区三区久久影院 | 444av| 91免费在线视频 | 欧洲在线免费视频 | 在线看国产日韩 | 六月丁香激情网 | 日本在线观看一区二区三区 | 久久天天躁狠狠躁夜夜不卡公司 | 91在线亚洲 | 久久久黄色免费网站 | 麻豆视频入口 | www天天操| 欧美一级专区免费大片 | 国产麻豆精品免费视频 | 国产精品白丝jk白祙 | 日韩字幕 | av高清在线观看 | 三级av黄色 | 中文字幕在线观看av | 国产美女精品视频 | 婷五月激情 | 国产日产欧美在线观看 | 天天色天天射天天操 | 少妇搡bbbb搡bbb搡忠贞 | 97精品国产一二三产区 | 中文字幕日韩av | 国产经典av| 成人h视频在线播放 | 一区二区三区精品在线 | 激情综合网五月 | 久久婷婷色综合 | 91麻豆操 | 精品久久久久久国产91 | 亚洲综合色丁香婷婷六月图片 | 国产视频一区在线播放 | 国产黄色精品在线 | 岛国av在线免费 | 午夜.dj高清免费观看视频 | 国产一卡在线 | 96久久久| 免费av网址在线观看 | 91在线国内视频 | 亚洲精品视频免费在线 | 欧美日韩视频在线观看一区二区 | 精品a级片 | 国产精品久久电影观看 | 六月色丁香 | 人人爱在线视频 | 91麻豆国产福利在线观看 | 亚洲乱码国产乱码精品天美传媒 | 久草在线视频在线观看 | 精品在线观看视频 | 激情开心网站 | 日韩电影一区二区三区 | 99电影 | 国产一级黄色av | 日韩专区在线观看 | 欧美国产精品久久久久久免费 | 久久美女精品 | 欧美激情一区不卡 | 成人av免费在线播放 | 极品美女被弄高潮视频网站 | 毛片网免费 | 91x色| 久热电影| 欧美天堂久久 | 亚洲综合色丁香婷婷六月图片 | 国产精品欧美 | 97小视频| 国产一区视频导航 | 久久色网站 | 丁香六月天婷婷 | 亚洲国产精品99久久久久久久久 | 九九在线国产视频 | 国产黄网在线 | 久久综合加勒比 | 久草视频手机在线 | 天天天天色射综合 | 91麻豆精品国产 | 国产成人一区二区三区在线观看 | 国产传媒中文字幕 | 伊人久久精品久久亚洲一区 | av丝袜制服 | 九色在线 | 精品视频免费观看 | a视频在线观看 | 狠狠躁夜夜躁人人爽超碰91 | 极品久久久 | 国产精品自产拍在线观看桃花 | 日本韩国中文字幕 | 国产香蕉在线 | 国产韩国精品一区二区三区 | 国产精品高清在线观看 | 色之综合网 | 操操碰 | 国产一区电影在线观看 | 久久视频免费看 | 亚洲精品永久免费视频 | 久久看看| 久久精品一区二区三区四区 | 久久久久久久久久久久久国产精品 | 久爱综合 | 91av久久 | 欧美日韩一区二区三区视频 | 中文字幕在线观看免费高清完整版 | 成人毛片在线视频 | 国产视频久久久 | 欧美精品亚洲二区 | 午夜视频在线网站 | 国产精品成人一区二区三区吃奶 | 成人免费共享视频 | 最近2019中文免费高清视频观看www99 | 久久精品高清 | 91成人精品视频 | 500部大龄熟乱视频 欧美日本三级 | 九色最新网址 | 五月婷婷视频在线 | 中文字幕第 | 97香蕉久久超级碰碰高清版 | 婷婷六月天丁香 | 女人高潮一级片 | 亚洲最大成人免费网站 | 亚洲精品在线一区二区 | 伊人色播 | 久久免费播放 | 毛片永久新网址首页 | 中文字幕 国产精品 | av免费看在线 | 免费在线观看av网址 | 天天操天天色天天射 | 欧美激情综合五月色丁香小说 | 亚洲电影影音先锋 | 欧美日韩免费一区二区三区 | 中文字幕在线观看免费高清电影 | 在线看小早川怜子av | 4438全国亚洲精品在线观看视频 | 91自拍成人 | 五月婷婷综合在线视频 | 婷婷激情站 | 久操久| 麻豆系列在线观看 | 久久免费视频一区 | 国产欧美最新羞羞视频在线观看 | 日韩一区二区免费在线观看 | 一本一本久久a久久精品牛牛影视 | 最近高清中文在线字幕在线观看 | av网站手机在线观看 | 日本黄色免费看 | 欧美日韩精品影院 | 狠狠搞,com| 欧美日韩成人一区 | 国产永久网站 | 亚洲国产精品一区二区久久,亚洲午夜 | 激情网在线视频 | 国产精品中文字幕在线播放 | 久久夜靖品 | v片在线看 | 波多野结衣在线播放视频 | 麻豆国产精品一区二区三区 | 国产精品视频久久久 | 麻豆视传媒官网免费观看 | 在线精品观看国产 | 亚洲经典在线 | 国产精品一区二区你懂的 | 最近免费中文字幕mv在线视频3 | 精品二区久久 | 国产视频69| 日韩高清免费电影 | av中文天堂| 国产在线观看中文字幕 | 成人免费av电影 | 日韩免费 | 色综合天天射 | 在线精品亚洲一区二区 | 91麻豆精品国产91久久久更新时间 | 日本不卡一区二区三区在线观看 | 9797在线看片亚洲精品 | 黄色在线观看污 | 91高清免费在线观看 | 欧美极度另类 | 久久综合精品一区 | 国产色婷婷 | 久久精品亚洲一区二区三区观看模式 | 69亚洲视频| 午夜在线看片 | 国产亚洲成人精品 | 一级特黄aaa大片在线观看 | 日日爽天天爽 | 国产日韩中文在线 | 99视频导航 | 亚洲一区不卡视频 | 91视频免费网站 | 一区二区三区免费在线观看视频 | 欧美在线观看视频一区二区三区 | 日韩在线色视频 | 亚洲视频 一区 | 日韩黄色中文字幕 | 精精国产xxxx视频在线播放 | 欧美九九视频 | 国产在线欧美日韩 | 欧美日韩xx| 亚洲国产av精品毛片鲁大师 | 欧洲一区二区三区精品 | 亚洲a网 | av电影一区 | 深夜激情影院 | 中中文字幕av | 国产va在线 | 久久这里有精品 | 丝袜制服天堂 | 国产精品视频地址 | 中文av字幕在线观看 | 国产成人精品综合久久久 | 日韩在线观看影院 | 欧美韩国日本在线 | 91大神免费视频 | 日韩免费视频观看 | 欧美日韩一区二区久久 | 久久国产热视频 | 国产精品免费在线 | 一区电影 | 国产视频1 | 色视频在线免费 | 国产中文字幕在线看 | 欧美一区二区三区激情视频 | 五月婷婷播播 | 亚洲国产小视频在线观看 | 国产欧美日韩一区 | 中文字幕视频免费观看 | 九九热在线播放 | 亚洲在线视频免费观看 | 日韩激情久久 | 91精品国产91久久久久久三级 | av在线播放观看 | 精品国内自产拍在线观看视频 | 欧美日韩精品影院 | 丁香激情综合久久伊人久久 | 美女免费视频一区 | 91麻豆看国产在线紧急地址 | 国产精品嫩草影视久久久 | 操老逼免费视频 | 国产高清视频在线 | 欧美日产一区 | 天天操天天射天天操 | 丁香六月综合网 | 久久久91精品国产一区二区三区 | 在线播放精品一区二区三区 | 69av在线播放| 日本不卡视频 | 黄色国产大片 | 婷婷综合五月天 | 久久综合狠狠综合久久激情 | 国产精品99久久久久久小说 | 中文字幕一区在线观看视频 | 91欧美日韩国产 | 五月天,com| 日韩在线无| 久久免费电影 | 91视频下载 | 91精品一区二区三区蜜桃 | 日韩精品一区二区三区中文字幕 | 中国老女人日b | 欧美日韩性视频在线 | 亚洲国产欧美一区二区三区丁香婷 | 亚洲一区精品二人人爽久久 | 一区二区三区精品在线 | 久久xx视频| 91插插视频| 中文字幕影视 | 欧美中文字幕久久 | a黄色片在线观看 | 麻花豆传媒mv在线观看 | 国产91探花| 日韩天堂在线观看 | 国产伦理久久精品久久久久_ | 美国三级黄色大片 | 中文字幕一区二区三区精华液 | 91成人久久 | 97成人资源站| 福利视频导航网址 | 一级片视频免费观看 | 国产日韩欧美在线观看视频 | 日韩电影中文字幕在线 | 免费观看黄 | 午夜精品成人一区二区三区 | 永久免费精品视频网站 | 久插视频| 在线观看中文av | 在线观看一二三区 | 日韩免费观看一区二区 | 国产在线观看你懂的 | 四虎成人网 | 女人18片| 91视视频在线直接观看在线看网页在线看 | 国产亚洲视频在线观看 | 中文字幕丝袜制服 | 精品久久久久久国产偷窥 | ,午夜性刺激免费看视频 | 欧美a级成人淫片免费看 | 亚洲成a人片77777潘金莲 | 久久精品系列 | 粉嫩av一区二区三区四区 | 久久久www成人免费精品 | 激情 婷婷 | 天天操天天吃 | 国产精品一区二区在线播放 | 亚洲电影黄色 | 欧美日韩国产精品爽爽 | 国产午夜精品av一区二区 | 狠狠干狠狠色 | 久久国产经典视频 | 中文字幕一区二区在线观看 | 99久久久国产精品免费99 | 欧美黄色成人 | 五月婷婷久草 | 欧美日性视频 | 精品国产成人在线影院 | 992tv在线 | 国产免费中文字幕 | 91av视频 | 在线成人免费电影 | www久久99| 国产aa免费视频 | 在线免费精品视频 | 在线国产中文字幕 | 国产三级久久久 | 99在线热播 | 久久999久久 | 久久最新 | 91传媒在线播放 | 欧美日韩精品在线观看视频 | 91xav | 国产视频1 | 91av手机在线| 久久综合色影院 | 色九色| 麻豆视频在线免费观看 | 日韩精品无 | 中文字幕av免费观看 | 九色激情网 | 18做爰免费视频网站 | 极品中文字幕 | 久久高清国产 | 成人久久久久久久久久 | 国产精品精品国产婷婷这里av | 五月婷婷激情 | 日韩a欧美| 亚洲综合视频在线观看 | 日韩精品一区二区三区电影 | 亚洲国产免费 | 精品女同一区二区三区在线观看 | 99精品热视频只有精品10 | 欧美精品一二 | 日p视频在线观看 | 黄色软件网站在线观看 | www.91成人| 亚洲精品国产成人av在线 | 一级精品视频在线观看宜春院 | 亚洲国产精品一区二区久久,亚洲午夜 | 久草在线资源观看 | 亚洲免费视频观看 | 久久在线免费视频 | 91av免费看 | 麻豆精品国产传媒 | 成人久久18免费网站 | 免费成人在线电影 | 天天看天天干 | 97超碰在线久草超碰在线观看 | 99高清视频有精品视频 | 日韩在线免费不卡 | 免费网站色 | 久久国产精品久久精品国产演员表 | 九九综合九九 | 久久99精品久久久久蜜臀 | 欧美大片www| 成 人 黄 色 视频 免费观看 | 女人18毛片a级毛片一区二区 | 96精品高清视频在线观看软件特色 | 狠狠干网址| 日韩在线观看一区二区 | 日韩在线观看你懂的 | 狠狠躁夜夜躁人人爽视频 | 日韩国产欧美在线视频 | 久精品视频在线观看 | 欧美日韩精品电影 | 欧美日韩在线免费视频 | 中文字幕免费不卡视频 | 午夜精品久久一牛影视 | 久久99国产精品自在自在app | 中文字幕免费观看视频 | 国产精品麻豆99久久久久久 | 91精品爽啪蜜夜国产在线播放 | 人人射 | 69久久久久久久 | 中文字幕日韩无 | 在线欧美a | 91一区一区三区 | 成年人视频在线免费 | 97香蕉视频| 激情网站五月天 | 日韩三级一区 | 性日韩欧美在线视频 | 91麻豆视频网站 | 毛片网站免费在线观看 | 久久精品久久精品久久精品 | 天天天色综合 | 在线观看亚洲国产精品 | 国产精品免费视频观看 | 久久97久久| av免费观看网站 | 一区二区三区久久精品 | 91高清不卡| 欧美精品在线一区 | 欧美日韩在线免费视频 | 91精品国产麻豆国产自产影视 | 米奇四色影视 | 国产精品青草综合久久久久99 | 五月婷婷综 | 97人人模人人爽人人少妇 | 国产96在线 | 国产精品剧情在线亚洲 | 丁香婷婷综合色啪 | 国产成人在线网站 | 国产午夜影院 | av免费线看 | www.超碰97.com | 色av资源网 | 在线免费观看黄色 | a天堂最新版中文在线地址 久久99久久精品国产 | 欧美一区中文字幕 | 色成人亚洲网 | 日本在线观看视频一区 | 久久国产综合视频 | 亚洲精品 在线视频 | 青青河边草观看完整版高清 | 久艹视频在线免费观看 | 欧美色插 | 国产精品18毛片一区二区 | 天天操天天射天天插 | 日韩中文字 | 九九免费在线看完整版 | 日韩av综合网站 | 国产午夜精品在线 | 免费在线中文字幕 | 91在线色| 色视频在线免费观看 | 91麻豆精品国产自产在线游戏 | 在线视频观看你懂的 | 激情五月在线观看 | 免费h在线观看 | 国产一区二区三区免费在线 | 国产精品视屏 | 91av播放 | 免费看的黄网站软件 | 久久婷综合| 欧美最猛性xxxxx亚洲精品 | 亚州中文av | 天天干天天操天天入 | 亚洲精品看片 | 国产香蕉视频在线播放 | 国产精品美女久久久久久久久久久 | 新版资源中文在线观看 | 三级视频国产 | 国产日韩视频在线观看 | 国产九色在线播放九色 | 在线观看的黄色 | 国产伦精品一区二区三区… | 99久热在线精品视频观看 | 日韩在线在线 | 免费在线激情电影 | 午夜精品一区二区三区在线视频 | 久草资源免费 | 在线观看午夜av | 91综合视频在线观看 | 999国内精品永久免费视频 | 国产一区二区在线影院 | 在线www色| 久久久免费观看完整版 | 久久国产欧美日韩精品 | 欧亚日韩精品一区二区在线 | 狠狠的干| 国产护士hd高朝护士1 | 韩国精品在线观看 | 狠狠的干狠狠的操 | 五月色婷 | 国产高清综合 | 婷五月激情 | 免费观看完整版无人区 | 国产精品自拍av | 国产黄色片久久 | www.激情五月.com | 夜夜婷婷 | 欧美精品一区二区性色 | 久久激情精品 | 一级片免费观看 | 夜色资源站wwwcom | 国产精品无av码在线观看 | 有码中文在线 | 97国产大学生情侣白嫩酒店 | 日韩最新在线视频 | 99精品国产成人一区二区 | 久久视频国产 | 国产精品美女久久久久久网站 | 3d黄动漫免费看 | 99这里只有精品视频 | 日韩色爱| 国产亚洲小视频 | www.com.黄| 99精品久久精品一区二区 | 久久久精品国产免费观看一区二区 | 六月丁香综合网 | 久久电影色 | 欧美精品视 | 国产亚洲精品日韩在线tv黄 | 亚洲国产日本 | 国产123区在线观看 国产精品麻豆91 | 黄色a三级 | 久久久精品网站 | 欧美久久久久久 | 亚洲视频久久久久 | 久久午夜精品 | 婷婷五综合 | 成人黄色小说视频 | 美女一二三区 | 亚洲一区网站 | 2018好看的中文在线观看 | 色婷婷综合久久久久中文字幕1 | 色噜噜在线观看视频 | 久久91网 | 99久久久国产精品免费99 | 亚洲v欧美v国产v在线观看 | 国产探花 | 国产欧美精品一区二区三区 | 久草在线视频免费资源观看 | 在线免费观看视频一区二区三区 | 日韩一区二区三区免费电影 | 激情欧美网 | 91激情| 9在线观看免费高清完整 | 国产一区二区视频在线播放 | 国产成人a亚洲精品v | 亚洲国产精品免费 | 日韩欧美一区二区在线 | 日韩中文字幕视频在线观看 | 狠狠色丁香婷婷综合最新地址 | 久草国产在线观看 | 精品久久久影院 | 亚洲成人国产精品 | 亚洲成人精品久久 | 中文视频在线看 | 久久国产精品99久久久久久老狼 | 玖玖爱免费视频 | 欧美激情综合五月色丁香小说 | 国产欧美日韩精品一区二区免费 | 夜夜操网 | 三级黄色欧美 | 国产不卡在线播放 | 国产97视频在线 | 亚洲精品乱码久久久久久蜜桃动漫 | 亚洲精品影院在线观看 | 91高清视频免费 | 成人av网页| 久久99精品国产91久久来源 | 中文字幕影视 | 日本在线观看视频一区 | 99看视频在线观看 | 色偷偷中文字幕 | 国产一级一片免费播放放a 一区二区三区国产欧美 | 天天综合在线观看 | 99精品在线免费观看 | 成人久久18免费网站麻豆 | 国产综合片 | 日韩综合精品 | 日韩和的一区二在线 | 激情久久网 | 国产成人久 | 欧美亚洲国产精品久久高清浪潮 | 亚洲黄色在线 | 国产精品久久久久久久久久久久午夜 | 成人黄色大片网站 | 搡bbbb搡bbb视频 | 九九九热精品免费视频观看 | 黄色在线观看免费网站 | 这里只有精品视频在线观看 | 久久久久综合精品福利啪啪 | 一区二区国产精品 | 免费成人在线观看视频 | 久久久久久高潮国产精品视 | 日韩亚洲在线视频 | 91亚洲精品久久久久图片蜜桃 | 亚洲精品自拍 | 国产视频中文字幕 | 国产黄色免费在线观看 | 在线成人中文字幕 | 久热爱| 在线看国产视频 | 麻豆精品国产传媒 | 日韩免费在线观看视频 | 91视频 - v11av | 免费特级黄色片 | 亚洲人成免费 | 日韩中文免费视频 | 天天操综合网站 | 欧美一级在线观看视频 | 在线午夜电影神马影院 | 免费www视频 | 手机看片国产日韩 | 久久久99精品免费观看app | 久久久久久久影视 | 西西44人体做爰大胆视频 | 国产精品永久久久久久久久久 | 九月婷婷综合网 | 国产精品美女久久久久久久网站 | 午夜黄网 | 伊人色综合久久天天网 | 日韩欧美在线第一页 | 在线观看资源 | 色婷婷亚洲综合 | 日本婷婷色 | 天天插天天狠 | 在线看片视频 | 国产黄色视| 色狠狠操 | 免费成人短视频 | 中文字幕在线观看网 | 五月开心婷婷 | 亚洲视频第一页 | 91入口在线观看 | 97在线视频免费 | 国产电影黄色av | 欧美日韩亚洲在线观看 | 天天干天天射天天插 | 又黄又刺激又爽的视频 | av在线h| 成人免费观看视频网站 | 久久精品8 | 国产资源网站 | 久久九九影视 | 国产一区欧美一区 | 亚洲激情 欧美激情 | 久久黄色网址 | 九九精品视频在线 | 亚洲激情久久 | 国产精品麻豆果冻传媒在线播放 | www.夜夜骑.com | 欧美一区二视频在线免费观看 | 免费网站黄 | 久久99精品久久久久久三级 | 欧美日韩精品影院 | 国产伦精品一区二区三区四区视频 | 天天干,天天射,天天操,天天摸 | 91av视频在线播放 | 国产不卡视频在线播放 | 操操操天天操 | 欧美巨大 | 久久不射网站 | 日韩视频精品在线 | 深爱激情av| 丝袜美女在线观看 | 91成人网页版 | 国产成人亚洲在线观看 | 久久精品一区二区国产 | 麻豆视频免费播放 | 精品国产一区二 | 精品久久久久久久久久久久 | 国产精品久久久一区二区 | 天天色婷婷 | 日本三级香港三级人妇99 | 日韩欧美精品一区 | 涩涩爱夜夜爱 | 成人黄色片免费 | 人人澡人人爽欧一区 | 午夜国产在线 | 国产视频精品在线 | 日韩av一卡二卡三卡 | 99色在线观看视频 | 成人av高清在线观看 | 在线观看免费视频你懂的 | 在线观看国产中文字幕 | 综合久久精品 | 国产精品久久久久免费观看 | 国产在线观看二区 | 久久久亚洲精品 | 免费av试看 | 美女中文字幕 | 国产精品美女久久久久久久网站 | 国产一级片不卡 | 黄色一级影院 | 免费观看不卡av | 亚洲伊人天堂 | 成人在线播放网站 | 国产精品嫩草在线 | 成人久久免费 | 国产经典av | 午夜色场 | 久久天天躁夜夜躁狠狠85麻豆 | 免费观看完整版无人区 | 91在线视频免费播放 | 五月天综合网 | 亚洲涩涩网站 | 亚洲黄色在线免费观看 | 国产原创av片 | 美女网站久久 | 国产97视频 | 久草在线看片 | 中文字幕在线电影 | 国产精品毛片久久久久久 | 日韩在线观看电影 | 久久久久久久久久久国产精品 | 免费看久久久 | 日韩有码专区 | 亚洲第一成网站 | 日日爱av | 亚洲精品成人免费 | 美女免费视频一区 | 成人在线观看日韩 | 午夜10000| av日韩不卡 | 欧美黑吊大战白妞欧美 | 美女视频黄免费的久久 | 欧美天天综合网 | 国产成人精品999在线观看 | 99成人精品 | 五月婷综合 | 日韩欧美国产成人 | 亚洲高清av在线 | 久久久综合色 | 色亚洲激情 | 免费在线激情电影 | 亚洲v欧美v国产v在线观看 | 高清国产午夜精品久久久久久 | 国语黄色片 | 日韩区欠美精品av视频 | 人人超碰免费 | 青青河边草手机免费 | av成年人电影| 日本久久久亚洲精品 | 在线中文字幕一区二区 | 久久久久久久国产精品影院 | 娇妻呻吟一区二区三区 | 国产福利av | 欧美日韩国产高清视频 | 成年人免费电影在线观看 | 激情欧美国产 | 一区二区欧美日韩 | v片在线播放 | 久久国产精品一国产精品 | 国内精品久久久久久久久久久久 | 成人久久亚洲 | 免费观看一级 | 免费91麻豆精品国产自产在线观看 | 免费在线观看av片 | 成人国产精品久久久久久亚洲 | 日本二区三区在线 | 91日韩在线播放 | 综合色在线观看 | 综合av在线| 日本丶国产丶欧美色综合 | 亚洲精品美女久久久久网站 | 亚洲成人黄色av | av在线亚洲天堂 | 国产资源av | 五月天综合激情网 | 激情电影影院 | 81精品国产乱码久久久久久 | 日韩三级视频在线看 | 亚洲高清不卡av | 在线观看mv的中文字幕网站 | 天天操夜夜操 | 久久久久久网 | 欧美精品亚洲精品 | 亚洲美女视频在线 | 日韩免费视频线观看 | 国产精品午夜久久 | 一区二区精品视频 | 国产中文视频 | 成年人在线看片 | 亚州人成在线播放 | 午夜精品久久久久久久久久久久久久 | 欧美精彩视频 | 国产经典三级 | 欧美日韩视频在线观看免费 |