├── .idea ├── .name ├── compiler.xml ├── encodings.xml ├── libraries │ ├── Maven__ch_qos_logback_logback_classic_1_2_3.xml │ ├── Maven__ch_qos_logback_logback_core_1_2_3.xml │ ├── Maven__com_fasterxml_classmate_1_3_4.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_annotations_2_9_0.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_core_2_9_4.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_9_4.xml │ ├── Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_9_4.xml │ ├── Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_9_4.xml │ ├── Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_9_4.xml │ ├── Maven__javax_annotation_javax_annotation_api_1_3_2.xml │ ├── Maven__javax_validation_validation_api_2_0_1_Final.xml │ ├── Maven__org_apache_logging_log4j_log4j_api_2_10_0.xml │ ├── Maven__org_apache_logging_log4j_log4j_to_slf4j_2_10_0.xml │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_28.xml │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_28.xml │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_28.xml │ ├── Maven__org_hibernate_validator_hibernate_validator_6_0_7_Final.xml │ ├── Maven__org_jboss_logging_jboss_logging_3_3_2_Final.xml │ ├── Maven__org_slf4j_jul_to_slf4j_1_7_25.xml │ ├── Maven__org_slf4j_slf4j_api_1_7_25.xml │ ├── Maven__org_springframework_boot_spring_boot_2_0_0_BUILD_SNAPSHOT.xml │ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_2_0_0_BUILD_SNAPSHOT.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_2_0_0_BUILD_SNAPSHOT.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_json_2_0_0_BUILD_SNAPSHOT.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_logging_2_0_0_BUILD_SNAPSHOT.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_tomcat_2_0_0_BUILD_SNAPSHOT.xml │ ├── Maven__org_springframework_boot_spring_boot_starter_web_2_0_0_BUILD_SNAPSHOT.xml │ ├── Maven__org_springframework_spring_aop_5_0_4_RELEASE.xml │ ├── Maven__org_springframework_spring_beans_5_0_4_RELEASE.xml │ ├── Maven__org_springframework_spring_context_5_0_4_RELEASE.xml │ ├── Maven__org_springframework_spring_core_5_0_4_RELEASE.xml │ ├── Maven__org_springframework_spring_expression_5_0_4_RELEASE.xml │ ├── Maven__org_springframework_spring_jcl_5_0_4_RELEASE.xml │ ├── Maven__org_springframework_spring_web_5_0_4_RELEASE.xml │ ├── Maven__org_springframework_spring_webmvc_5_0_4_RELEASE.xml │ └── Maven__org_yaml_snakeyaml_1_19.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── ethProject.iml ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── warrior │ │ ├── Application.java │ │ ├── config │ │ ├── DataSourceConfig.java │ │ └── MybatisPlusConfig.java │ │ ├── controler │ │ └── StudentController.java │ │ ├── entity │ │ └── Student.java │ │ ├── mapper │ │ └── StudentMapper.java │ │ ├── service │ │ └── IStudentService.java │ │ ├── serviceImpl │ │ └── StudentServiceImpl.java │ │ └── util │ │ └── Result.java └── resources │ ├── application-dev.properties │ ├── application-pro.properties │ ├── application.properties │ └── mapper │ └── StudentMapper.xml └── test └── java └── MpGenerator.java /.idea/.name: -------------------------------------------------------------------------------- 1 | ETH -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_classmate_1_3_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__com_fasterxml_classmate_1_3_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_9_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_9_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_9_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_9_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_9_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_9_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_9_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_9_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_9_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_9_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_9_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_9_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__javax_annotation_javax_annotation_api_1_3_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__javax_annotation_javax_annotation_api_1_3_2.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_10_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_10_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_10_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_10_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_28.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_28.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_28.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_28.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_28.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_28.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_hibernate_validator_hibernate_validator_6_0_7_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_hibernate_validator_hibernate_validator_6_0_7_Final.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_jboss_logging_jboss_logging_3_3_2_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_jboss_logging_jboss_logging_3_3_2_Final.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_25.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_2_0_0_BUILD_SNAPSHOT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_2_0_0_BUILD_SNAPSHOT.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_0_0_BUILD_SNAPSHOT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_0_0_BUILD_SNAPSHOT.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_0_0_BUILD_SNAPSHOT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_0_0_BUILD_SNAPSHOT.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_0_0_BUILD_SNAPSHOT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_0_0_BUILD_SNAPSHOT.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_0_0_BUILD_SNAPSHOT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_0_0_BUILD_SNAPSHOT.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_tomcat_2_0_0_BUILD_SNAPSHOT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_tomcat_2_0_0_BUILD_SNAPSHOT.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_0_0_BUILD_SNAPSHOT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_0_0_BUILD_SNAPSHOT.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_aop_5_0_4_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_spring_aop_5_0_4_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_beans_5_0_4_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_spring_beans_5_0_4_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_context_5_0_4_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_spring_context_5_0_4_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_core_5_0_4_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_spring_core_5_0_4_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_expression_5_0_4_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_spring_expression_5_0_4_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_jcl_5_0_4_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_spring_jcl_5_0_4_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_web_5_0_4_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_spring_web_5_0_4_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_webmvc_5_0_4_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_springframework_spring_webmvc_5_0_4_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_yaml_snakeyaml_1_19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/libraries/Maven__org_yaml_snakeyaml_1_19.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/README.md -------------------------------------------------------------------------------- /ethProject.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/ethProject.iml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/warrior/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/java/com/warrior/Application.java -------------------------------------------------------------------------------- /src/main/java/com/warrior/config/DataSourceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/java/com/warrior/config/DataSourceConfig.java -------------------------------------------------------------------------------- /src/main/java/com/warrior/config/MybatisPlusConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/java/com/warrior/config/MybatisPlusConfig.java -------------------------------------------------------------------------------- /src/main/java/com/warrior/controler/StudentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/java/com/warrior/controler/StudentController.java -------------------------------------------------------------------------------- /src/main/java/com/warrior/entity/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/java/com/warrior/entity/Student.java -------------------------------------------------------------------------------- /src/main/java/com/warrior/mapper/StudentMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/java/com/warrior/mapper/StudentMapper.java -------------------------------------------------------------------------------- /src/main/java/com/warrior/service/IStudentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/java/com/warrior/service/IStudentService.java -------------------------------------------------------------------------------- /src/main/java/com/warrior/serviceImpl/StudentServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/java/com/warrior/serviceImpl/StudentServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/warrior/util/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/java/com/warrior/util/Result.java -------------------------------------------------------------------------------- /src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/resources/application-dev.properties -------------------------------------------------------------------------------- /src/main/resources/application-pro.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/resources/application-pro.properties -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/mapper/StudentMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/main/resources/mapper/StudentMapper.xml -------------------------------------------------------------------------------- /src/test/java/MpGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinQiHong66/SpringBoot_MybatisPlus/HEAD/src/test/java/MpGenerator.java --------------------------------------------------------------------------------