├── .gitattributes ├── .gitignore ├── .idea ├── compiler.xml ├── encodings.xml ├── libraries │ ├── Maven__ch_qos_logback_logback_classic_1_1_11.xml │ ├── Maven__ch_qos_logback_logback_core_1_1_11.xml │ ├── Maven__com_jayway_jsonpath_json_path_2_2_0.xml │ ├── Maven__com_vaadin_external_google_android_json_0_0_20131108_vaadin1.xml │ ├── Maven__junit_junit_4_12.xml │ ├── Maven__mysql_mysql_connector_java_5_1_44.xml │ ├── Maven__net_minidev_accessors_smart_1_1.xml │ ├── Maven__net_minidev_json_smart_2_2_1.xml │ ├── Maven__org_apache_tomcat_tomcat_jdbc_8_5_23.xml │ ├── Maven__org_apache_tomcat_tomcat_juli_8_5_23.xml │ ├── Maven__org_assertj_assertj_core_2_6_0.xml │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ ├── Maven__org_hamcrest_hamcrest_library_1_3.xml │ ├── Maven__org_mockito_mockito_core_1_10_19.xml │ ├── Maven__org_mybatis_mybatis_3_4_5.xml │ ├── Maven__org_mybatis_mybatis_spring_1_3_1.xml │ ├── Maven__org_mybatis_spring_boot_mybatis_spring_boot_autoconfigure_1_3_1.xml │ ├── Maven__org_mybatis_spring_boot_mybatis_spring_boot_starter_1_3_1.xml │ ├── Maven__org_objenesis_objenesis_2_1.xml │ ├── Maven__org_ow2_asm_asm_5_0_3.xml │ ├── Maven__org_skyscreamer_jsonassert_1_4_0.xml │ ├── Maven__org_slf4j_jcl_over_slf4j_1_7_25.xml │ ├── Maven__org_slf4j_jul_to_slf4j_1_7_25.xml │ ├── Maven__org_slf4j_log4j_over_slf4j_1_7_25.xml │ ├── Maven__org_slf4j_slf4j_api_1_7_25.xml │ ├── Maven__org_springframework_boot_spring_boot_1_5_8_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_1_5_8_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_1_5_8_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_jdbc_1_5_8_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_logging_1_5_8_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_test_1_5_8_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_test_1_5_8_RELEASE.xml │ ├── Maven__org_springframework_boot_spring_boot_test_autoconfigure_1_5_8_RELEASE.xml │ ├── Maven__org_springframework_spring_aop_4_3_12_RELEASE.xml │ ├── Maven__org_springframework_spring_beans_4_3_12_RELEASE.xml │ ├── Maven__org_springframework_spring_context_4_3_12_RELEASE.xml │ ├── Maven__org_springframework_spring_core_4_3_12_RELEASE.xml │ ├── Maven__org_springframework_spring_expression_4_3_12_RELEASE.xml │ ├── Maven__org_springframework_spring_jdbc_4_3_12_RELEASE.xml │ ├── Maven__org_springframework_spring_test_4_3_12_RELEASE.xml │ ├── Maven__org_springframework_spring_tx_4_3_12_RELEASE.xml │ └── Maven__org_yaml_snakeyaml_1_17.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml ├── springboot-mybatis-demo2.iml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── winterchen │ │ │ ├── SpringbootMybatisDemo2Application.java │ │ │ ├── domain │ │ │ └── User.java │ │ │ └── mapper │ │ │ └── UserMapper.java │ └── resources │ │ └── application.yml ├── sql │ └── user.sql └── test │ └── java │ └── com │ └── winterchen │ └── SpringbootMybatisDemo2ApplicationTests.java └── target └── classes └── application.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__ch_qos_logback_logback_classic_1_1_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__ch_qos_logback_logback_classic_1_1_11.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__ch_qos_logback_logback_core_1_1_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__ch_qos_logback_logback_core_1_1_11.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_jayway_jsonpath_json_path_2_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__com_jayway_jsonpath_json_path_2_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_vaadin_external_google_android_json_0_0_20131108_vaadin1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__com_vaadin_external_google_android_json_0_0_20131108_vaadin1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__junit_junit_4_12.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__mysql_mysql_connector_java_5_1_44.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__mysql_mysql_connector_java_5_1_44.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_minidev_accessors_smart_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__net_minidev_accessors_smart_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_minidev_json_smart_2_2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__net_minidev_json_smart_2_2_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_tomcat_jdbc_8_5_23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_apache_tomcat_tomcat_jdbc_8_5_23.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_tomcat_juli_8_5_23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_apache_tomcat_tomcat_juli_8_5_23.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_assertj_assertj_core_2_6_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_assertj_assertj_core_2_6_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_hamcrest_hamcrest_library_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_hamcrest_hamcrest_library_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mockito_mockito_core_1_10_19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_mockito_mockito_core_1_10_19.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mybatis_mybatis_3_4_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_mybatis_mybatis_3_4_5.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mybatis_mybatis_spring_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_mybatis_mybatis_spring_1_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mybatis_spring_boot_mybatis_spring_boot_autoconfigure_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_mybatis_spring_boot_mybatis_spring_boot_autoconfigure_1_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_mybatis_spring_boot_mybatis_spring_boot_starter_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_mybatis_spring_boot_mybatis_spring_boot_starter_1_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_objenesis_objenesis_2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_objenesis_objenesis_2_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_ow2_asm_asm_5_0_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_ow2_asm_asm_5_0_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_skyscreamer_jsonassert_1_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_skyscreamer_jsonassert_1_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_jcl_over_slf4j_1_7_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_slf4j_jcl_over_slf4j_1_7_25.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_25.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_log4j_over_slf4j_1_7_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_slf4j_log4j_over_slf4j_1_7_25.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_1_5_8_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_1_5_8_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_1_5_8_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_1_5_8_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_1_5_8_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_1_5_8_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jdbc_1_5_8_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jdbc_1_5_8_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_1_5_8_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_1_5_8_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_test_1_5_8_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_test_1_5_8_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_test_1_5_8_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_test_1_5_8_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_test_autoconfigure_1_5_8_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_test_autoconfigure_1_5_8_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_aop_4_3_12_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_spring_aop_4_3_12_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_beans_4_3_12_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_spring_beans_4_3_12_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_context_4_3_12_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_spring_context_4_3_12_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_core_4_3_12_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_spring_core_4_3_12_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_expression_4_3_12_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_spring_expression_4_3_12_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_jdbc_4_3_12_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_spring_jdbc_4_3_12_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_test_4_3_12_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_spring_test_4_3_12_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_tx_4_3_12_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_springframework_spring_tx_4_3_12_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_yaml_snakeyaml_1_17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/libraries/Maven__org_yaml_snakeyaml_1_17.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/pom.xml -------------------------------------------------------------------------------- /springboot-mybatis-demo2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/springboot-mybatis-demo2.iml -------------------------------------------------------------------------------- /src/main/java/com/winterchen/SpringbootMybatisDemo2Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/src/main/java/com/winterchen/SpringbootMybatisDemo2Application.java -------------------------------------------------------------------------------- /src/main/java/com/winterchen/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/src/main/java/com/winterchen/domain/User.java -------------------------------------------------------------------------------- /src/main/java/com/winterchen/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/src/main/java/com/winterchen/mapper/UserMapper.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/sql/user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/src/sql/user.sql -------------------------------------------------------------------------------- /src/test/java/com/winterchen/SpringbootMybatisDemo2ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/src/test/java/com/winterchen/SpringbootMybatisDemo2ApplicationTests.java -------------------------------------------------------------------------------- /target/classes/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinterChenS/springboot-mybatis-demo2/HEAD/target/classes/application.yml --------------------------------------------------------------------------------