├── README.md ├── SpringBoot ├── .idea │ ├── MyBootstrap.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── NewsProject │ ├── .idea │ │ ├── encodings.xml │ │ └── workspace.xml │ ├── index.html │ └── static │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ ├── font │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── spring-boot-01-hello-quick │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springbootquick │ │ │ │ ├── SpringBoot01HelloQuickApplication.java │ │ │ │ └── controller │ │ │ │ └── HelloController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springbootquick │ │ └── SpringBoot01HelloQuickApplicationTests.java ├── spring-boot-02-config │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBoot02ConfigApplication.java │ │ │ │ ├── bean │ │ │ │ ├── Dog.java │ │ │ │ └── Person.java │ │ │ │ ├── config │ │ │ │ └── MyAppConfig.java │ │ │ │ ├── controller │ │ │ │ └── HelloController.java │ │ │ │ └── service │ │ │ │ └── HelloService.java │ │ └── resources │ │ │ ├── application-dev.properties │ │ │ ├── application-pro.properties │ │ │ ├── application.properties │ │ │ ├── application.yml │ │ │ ├── bean.xml │ │ │ └── person.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot02ConfigApplicationTests.java ├── spring-boot-03-logging │ ├── .idea │ │ ├── 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_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_9_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_9_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_9_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_9_5.xml │ │ │ ├── Maven__com_jayway_jsonpath_json_path_2_4_0.xml │ │ │ ├── Maven__com_vaadin_external_google_android_json_0_0_20131108_vaadin1.xml │ │ │ ├── Maven__javax_annotation_javax_annotation_api_1_3_2.xml │ │ │ ├── Maven__javax_validation_validation_api_2_0_1_Final.xml │ │ │ ├── Maven__junit_junit_4_12.xml │ │ │ ├── Maven__net_bytebuddy_byte_buddy_1_7_11.xml │ │ │ ├── Maven__net_bytebuddy_byte_buddy_agent_1_7_11.xml │ │ │ ├── Maven__net_minidev_accessors_smart_1_2.xml │ │ │ ├── Maven__net_minidev_json_smart_2_3.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_29.xml │ │ │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_29.xml │ │ │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_29.xml │ │ │ ├── Maven__org_assertj_assertj_core_3_9_1.xml │ │ │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ │ │ ├── Maven__org_hamcrest_hamcrest_library_1_3.xml │ │ │ ├── Maven__org_hibernate_validator_hibernate_validator_6_0_9_Final.xml │ │ │ ├── Maven__org_jboss_logging_jboss_logging_3_3_2_Final.xml │ │ │ ├── Maven__org_mockito_mockito_core_2_15_0.xml │ │ │ ├── Maven__org_objenesis_objenesis_2_6.xml │ │ │ ├── Maven__org_ow2_asm_asm_5_0_4.xml │ │ │ ├── Maven__org_skyscreamer_jsonassert_1_5_0.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_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_json_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_logging_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_test_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_tomcat_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_web_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_test_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_test_autoconfigure_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_aop_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_beans_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_boot_starter_log4j2_unknown.xml │ │ │ ├── Maven__org_springframework_spring_context_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_core_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_expression_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_jcl_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_test_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_web_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_webmvc_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_xmlunit_xmlunit_core_2_5_1.xml │ │ │ └── Maven__org_yaml_snakeyaml_1_19.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── pom.xml │ ├── spring-boot-03-logging.iml │ ├── springboot.log │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── wdjr │ │ │ │ │ └── springboot │ │ │ │ │ └── SpringBoot03LoggingApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── wdjr │ │ │ └── springboot │ │ │ └── SpringBoot03LoggingApplicationTests.java │ └── target │ │ ├── classes │ │ ├── application.properties │ │ └── com │ │ │ └── wdjr │ │ │ └── springboot │ │ │ └── SpringBoot03LoggingApplication.class │ │ └── test-classes │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot03LoggingApplicationTests.class ├── spring-boot-04-web-jsp │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── ServletInitializer.java │ │ │ │ └── SpringBoot04WebJspApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot04WebJspApplicationTests.java ├── spring-boot-06-data-jdbc │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBoot06DataJdbcApplication.java │ │ │ │ ├── config │ │ │ │ └── DruidConfig.java │ │ │ │ └── controller │ │ │ │ └── HelloController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── application.yml │ │ │ └── department.sql │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot06DataJdbcApplicationTests.java ├── spring-boot-06-data-jpa │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBoot06DataJpaApplication.java │ │ │ │ ├── controller │ │ │ │ └── UserController.java │ │ │ │ ├── entity │ │ │ │ └── User.java │ │ │ │ └── repository │ │ │ │ └── UserRepository.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot06DataJpaApplicationTests.java ├── spring-boot-06-data-mybatis │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBoot06DataMybatisApplication.java │ │ │ │ ├── bean │ │ │ │ ├── Department.java │ │ │ │ └── Employee.java │ │ │ │ ├── config │ │ │ │ ├── DruidConfig.java │ │ │ │ └── MyBatisConfig.java │ │ │ │ ├── controller │ │ │ │ ├── DeptController.java │ │ │ │ └── EmployeeController.java │ │ │ │ └── mapper │ │ │ │ ├── DepartmentMapper.java │ │ │ │ └── EmployeeMapper.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── application.yml │ │ │ ├── mybatis │ │ │ ├── mapper │ │ │ │ └── EmployeeMapper.xml │ │ │ └── mybatis-config.xml │ │ │ └── sql │ │ │ ├── department.sql │ │ │ └── employee.sql │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot06DataMybatisApplicationTests.java ├── spring-boot-07-config │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBoot07ConfigApplication.java │ │ │ │ └── listener │ │ │ │ ├── HelloApplicationContextInitializer.java │ │ │ │ ├── HelloApplicationRunner.java │ │ │ │ ├── HelloCommandLineRunner.java │ │ │ │ └── HelloSpringApplicationRunListener.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── spring.factories │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot07ConfigApplicationTests.java ├── spring-boot-08-starter-test │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ └── SpringBoot08StarterTestApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot08StarterTestApplicationTests.java ├── spring-boot-08-starter-test01 │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBoot08StarterTest01Application.java │ │ │ │ └── controller │ │ │ │ └── HelloController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot08StarterTest01ApplicationTests.java ├── spring-boot-08-starter │ ├── .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__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_22.xml │ │ │ ├── Maven__org_slf4j_slf4j_api_1_7_25.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_1_5_13_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_1_5_13_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_1_5_13_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_logging_1_5_13_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_aop_4_3_17_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_beans_4_3_17_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_context_4_3_17_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_core_4_3_17_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_expression_4_3_17_RELEASE.xml │ │ │ └── Maven__org_yaml_snakeyaml_1_17.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── wdjr-spring-boot-starter-autoconfigurer │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── starter │ │ │ │ ├── HelloProperties.java │ │ │ │ ├── HelloService.java │ │ │ │ └── HelloServiceAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── spring.factories │ └── wdjr-spring-boot-starter │ │ ├── pom.xml │ │ ├── target │ │ ├── maven-archiver │ │ │ └── pom.properties │ │ ├── maven-status │ │ │ └── maven-compiler-plugin │ │ │ │ ├── compile │ │ │ │ └── default-compile │ │ │ │ │ └── inputFiles.lst │ │ │ │ └── testCompile │ │ │ │ └── default-testCompile │ │ │ │ └── inputFiles.lst │ │ └── wdjr-spring-boot-starter-1.0-SNAPSHOT.jar │ │ └── wdjr-spring-boot-starter.iml ├── spring-boot-09-starter │ ├── .idea │ │ ├── compiler.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ └── wdjr-spring-boot-starter │ │ ├── pom.xml │ │ └── wdjr-spring-boot-starter.iml ├── spring-boot-10-starter-test │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBoot10StarterTestApplication.java │ │ │ │ └── controller │ │ │ │ └── HelloController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot10StarterTestApplicationTests.java ├── spring-boot-10-starter │ ├── .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__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_22.xml │ │ │ ├── Maven__org_slf4j_slf4j_api_1_7_25.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_1_5_13_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_1_5_13_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_1_5_13_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_logging_1_5_13_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_aop_4_3_17_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_beans_4_3_17_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_context_4_3_17_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_core_4_3_17_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_expression_4_3_17_RELEASE.xml │ │ │ └── Maven__org_yaml_snakeyaml_1_17.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── lxy-spring-boot-starter-autoconfigurer │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── lxy │ │ │ │ └── starter │ │ │ │ ├── HelloProperties.java │ │ │ │ ├── HelloService.java │ │ │ │ └── HelloServiceAutoConfiguration.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── spring.factories │ └── lxy-spring-boot-starter │ │ ├── lxy-spring-boot-starter.iml │ │ ├── pom.xml │ │ └── target │ │ ├── lxy-spring-boot-starter-1.0-SNAPSHOT.jar │ │ ├── maven-archiver │ │ └── pom.properties │ │ └── maven-status │ │ └── maven-compiler-plugin │ │ ├── compile │ │ └── default-compile │ │ │ └── inputFiles.lst │ │ └── testCompile │ │ └── default-testCompile │ │ └── inputFiles.lst ├── spring-boot-config-02 │ ├── .idea │ │ ├── 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_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_9_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_9_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_9_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_9_5.xml │ │ │ ├── Maven__com_jayway_jsonpath_json_path_2_4_0.xml │ │ │ ├── Maven__com_vaadin_external_google_android_json_0_0_20131108_vaadin1.xml │ │ │ ├── Maven__javax_annotation_javax_annotation_api_1_3_2.xml │ │ │ ├── Maven__javax_validation_validation_api_2_0_1_Final.xml │ │ │ ├── Maven__junit_junit_4_12.xml │ │ │ ├── Maven__net_bytebuddy_byte_buddy_1_7_11.xml │ │ │ ├── Maven__net_bytebuddy_byte_buddy_agent_1_7_11.xml │ │ │ ├── Maven__net_minidev_accessors_smart_1_2.xml │ │ │ ├── Maven__net_minidev_json_smart_2_3.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_29.xml │ │ │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_29.xml │ │ │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_29.xml │ │ │ ├── Maven__org_assertj_assertj_core_3_9_1.xml │ │ │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ │ │ ├── Maven__org_hamcrest_hamcrest_library_1_3.xml │ │ │ ├── Maven__org_hibernate_validator_hibernate_validator_6_0_9_Final.xml │ │ │ ├── Maven__org_jboss_logging_jboss_logging_3_3_2_Final.xml │ │ │ ├── Maven__org_mockito_mockito_core_2_15_0.xml │ │ │ ├── Maven__org_objenesis_objenesis_2_6.xml │ │ │ ├── Maven__org_ow2_asm_asm_5_0_4.xml │ │ │ ├── Maven__org_skyscreamer_jsonassert_1_5_0.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_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_json_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_logging_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_test_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_tomcat_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_web_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_test_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_test_autoconfigure_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_aop_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_beans_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_context_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_core_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_expression_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_jcl_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_test_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_web_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_webmvc_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_xmlunit_xmlunit_core_2_5_1.xml │ │ │ └── Maven__org_yaml_snakeyaml_1_19.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── applicaiton.properties │ ├── config │ │ └── application.properties │ ├── pom.xml │ ├── spring-boot-config-02.iml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── wdjr │ │ │ │ │ └── springboot │ │ │ │ │ ├── SpringBootConfig02Application.java │ │ │ │ │ └── contoller │ │ │ │ │ └── HelloController.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── application.yml │ │ │ │ └── config │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── wdjr │ │ │ └── springboot │ │ │ └── SpringBootConfig02ApplicationTests.java │ └── target │ │ ├── classes │ │ ├── application.properties │ │ ├── application.yml │ │ ├── com │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBootConfig02Application.class │ │ │ │ └── contoller │ │ │ │ └── HelloController.class │ │ └── config │ │ │ └── application.properties │ │ ├── maven-archiver │ │ └── pom.properties │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ ├── compile │ │ │ └── default-compile │ │ │ │ ├── createdFiles.lst │ │ │ │ └── inputFiles.lst │ │ │ └── testCompile │ │ │ └── default-testCompile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ ├── spring-boot-config-02-0.0.1-SNAPSHOT.jar │ │ ├── spring-boot-config-02-0.0.1-SNAPSHOT.jar.original │ │ ├── surefire-reports │ │ ├── TEST-com.wdjr.springboot.SpringBootConfig02ApplicationTests.xml │ │ └── com.wdjr.springboot.SpringBootConfig02ApplicationTests.txt │ │ └── test-classes │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBootConfig02ApplicationTests.class ├── spring-boot-web-04-jsp │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── ServletInitializer.java │ │ │ │ ├── SpringBootWeb04JspApplication.java │ │ │ │ └── controller │ │ │ │ └── HelloController.java │ │ ├── resources │ │ │ └── application.properties │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── jsp │ │ │ └── success.jsp │ │ │ └── web.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBootWeb04JspApplicationTests.java ├── spring-boot01-helloworld │ ├── .idea │ │ ├── compiler.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── workspace.xml │ ├── pom.xml │ ├── spring-boot01-helloworld.iml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── wdjr │ │ │ ├── HelloWorldMainApplication.java │ │ │ └── controller │ │ │ └── HelloController.java │ └── target │ │ ├── classes │ │ └── com │ │ │ └── wdjr │ │ │ ├── HelloWorldMainApplication.class │ │ │ └── controller │ │ │ └── HelloController.class │ │ ├── maven-archiver │ │ └── pom.properties │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ ├── compile │ │ │ └── default-compile │ │ │ │ ├── createdFiles.lst │ │ │ │ └── inputFiles.lst │ │ │ └── testCompile │ │ │ └── default-testCompile │ │ │ └── inputFiles.lst │ │ ├── spring-boot01-helloworld-1.0-SNAPSHOT.jar │ │ └── spring-boot01-helloworld-1.0-SNAPSHOT.jar.original ├── springboot web模板 │ ├── Dashboard.html │ ├── Dashboard_files │ │ ├── Chart.min.js │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.js │ │ ├── dashboard.css │ │ ├── feather.min.js │ │ ├── jquery-3.3.1.slim.min.js │ │ └── popper.min.js │ ├── asset │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── dashboard.css │ │ │ └── signin.css │ │ ├── font │ │ │ └── bootstrap-solid.svg │ │ └── js │ │ │ ├── Chart.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── feather.min.js │ │ │ ├── jquery-3.3.1.slim.min.js │ │ │ └── popper.min.js │ ├── login.html │ └── login_files │ │ ├── bootstrap-solid.svg │ │ ├── bootstrap.min.css │ │ └── signin.css ├── springboot-04-web-restfulcrud │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── Springboot04WebRestfulcrudApplication.java │ │ │ │ ├── component │ │ │ │ ├── LoginHandlerInterceptor.java │ │ │ │ ├── MyErrorAttributes.java │ │ │ │ └── MyLocalResolver.java │ │ │ │ ├── config │ │ │ │ ├── MyMvcConfig.java │ │ │ │ └── MyServerConfig.java │ │ │ │ ├── controller │ │ │ │ ├── EmployeeController.java │ │ │ │ ├── HelloController.java │ │ │ │ ├── LoginController.java │ │ │ │ └── MyExceptionHandler.java │ │ │ │ ├── dao │ │ │ │ ├── DepartmentDao.java │ │ │ │ └── EmployeeDao.java │ │ │ │ ├── entities │ │ │ │ ├── Department.java │ │ │ │ └── Employee.java │ │ │ │ ├── exception │ │ │ │ └── UserNotExitsException.java │ │ │ │ ├── filter │ │ │ │ └── MyFilter.java │ │ │ │ ├── listener │ │ │ │ └── MyListener.java │ │ │ │ └── servlet │ │ │ │ └── MyServlet.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── i18n │ │ │ ├── login.properties │ │ │ ├── login_en_US.properties │ │ │ └── login_zh_CN.properties │ │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── dashboard.css │ │ │ │ └── signin.css │ │ │ ├── img │ │ │ │ └── bootstrap-solid.svg │ │ │ └── js │ │ │ │ ├── Chart.min.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── feather.min.js │ │ │ │ ├── jquery-3.3.1.slim.min.js │ │ │ │ └── popper.min.js │ │ │ └── templates │ │ │ ├── Dashboard.html │ │ │ ├── commons │ │ │ └── bar.html │ │ │ ├── emp │ │ │ ├── add.html │ │ │ └── list.html │ │ │ ├── error │ │ │ ├── 4xx.html │ │ │ └── 5xx.html │ │ │ ├── login.html │ │ │ └── success.html │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── Springboot04WebRestfulcrudApplicationTests.java ├── springboot-05-sql │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ └── Springboot05SqlApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── Springboot05SqlApplicationTests.java ├── springboot-config-auto │ ├── .idea │ │ ├── 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_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_9_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_9_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_9_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_9_5.xml │ │ │ ├── Maven__com_jayway_jsonpath_json_path_2_4_0.xml │ │ │ ├── Maven__com_vaadin_external_google_android_json_0_0_20131108_vaadin1.xml │ │ │ ├── Maven__javax_annotation_javax_annotation_api_1_3_2.xml │ │ │ ├── Maven__javax_validation_validation_api_2_0_1_Final.xml │ │ │ ├── Maven__junit_junit_4_12.xml │ │ │ ├── Maven__net_bytebuddy_byte_buddy_1_7_11.xml │ │ │ ├── Maven__net_bytebuddy_byte_buddy_agent_1_7_11.xml │ │ │ ├── Maven__net_minidev_accessors_smart_1_2.xml │ │ │ ├── Maven__net_minidev_json_smart_2_3.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_29.xml │ │ │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_29.xml │ │ │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_29.xml │ │ │ ├── Maven__org_assertj_assertj_core_3_9_1.xml │ │ │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ │ │ ├── Maven__org_hamcrest_hamcrest_library_1_3.xml │ │ │ ├── Maven__org_hibernate_validator_hibernate_validator_6_0_9_Final.xml │ │ │ ├── Maven__org_jboss_logging_jboss_logging_3_3_2_Final.xml │ │ │ ├── Maven__org_mockito_mockito_core_2_15_0.xml │ │ │ ├── Maven__org_objenesis_objenesis_2_6.xml │ │ │ ├── Maven__org_ow2_asm_asm_5_0_4.xml │ │ │ ├── Maven__org_skyscreamer_jsonassert_1_5_0.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_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_json_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_logging_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_test_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_tomcat_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_starter_web_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_test_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_boot_spring_boot_test_autoconfigure_2_0_1_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_aop_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_beans_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_context_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_core_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_expression_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_jcl_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_test_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_web_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_webmvc_5_0_5_RELEASE.xml │ │ │ ├── Maven__org_xmlunit_xmlunit_core_2_5_1.xml │ │ │ └── Maven__org_yaml_snakeyaml_1_19.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── pom.xml │ ├── springboot-config-auto.iml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── wdjr │ │ │ │ │ └── springboot │ │ │ │ │ └── SpringbootConfigAutoApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── wdjr │ │ │ └── springboot │ │ │ └── SpringbootConfigAutoApplicationTests.java │ └── target │ │ ├── classes │ │ ├── application.properties │ │ └── com │ │ │ └── wdjr │ │ │ └── springboot │ │ │ └── SpringbootConfigAutoApplication.class │ │ └── test-classes │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringbootConfigAutoApplicationTests.class ├── springboot │ ├── .metadata │ │ ├── .lock │ │ ├── .log │ │ ├── .mylyn │ │ │ └── repositories.xml.zip │ │ ├── .plugins │ │ │ ├── org.eclipse.core.resources │ │ │ │ ├── .root │ │ │ │ │ ├── .indexes │ │ │ │ │ │ ├── history.version │ │ │ │ │ │ ├── properties.index │ │ │ │ │ │ └── properties.version │ │ │ │ │ └── 3.tree │ │ │ │ └── .safetable │ │ │ │ │ └── org.eclipse.core.resources │ │ │ ├── org.eclipse.core.runtime │ │ │ │ └── .settings │ │ │ │ │ ├── org.eclipse.ajdt.ui.prefs │ │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ │ ├── org.eclipse.egit.core.prefs │ │ │ │ │ ├── org.eclipse.epp.logging.aeri.ide.prefs │ │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ │ ├── org.eclipse.jdt.launching.prefs │ │ │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ │ │ ├── org.eclipse.jst.j2ee.webservice.ui.prefs │ │ │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ │ │ ├── org.eclipse.m2e.discovery.prefs │ │ │ │ │ ├── org.eclipse.m2e.editor.xml.prefs │ │ │ │ │ ├── org.eclipse.m2e.wtp.prefs │ │ │ │ │ ├── org.eclipse.mylyn.context.core.prefs │ │ │ │ │ ├── org.eclipse.mylyn.monitor.ui.prefs │ │ │ │ │ ├── org.eclipse.mylyn.tasks.ui.prefs │ │ │ │ │ ├── org.eclipse.rse.core.prefs │ │ │ │ │ ├── org.eclipse.rse.ui.prefs │ │ │ │ │ ├── org.eclipse.team.ui.prefs │ │ │ │ │ ├── org.eclipse.ui.editors.prefs │ │ │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ │ │ ├── org.eclipse.ui.workbench.prefs │ │ │ │ │ ├── org.springframework.ide.eclipse.imports.prefs │ │ │ │ │ ├── org.springsource.ide.eclipse.commons.configurator.prefs │ │ │ │ │ ├── org.springsource.ide.eclipse.commons.frameworks.core.prefs │ │ │ │ │ └── org.springsource.ide.eclipse.commons.ui.prefs │ │ │ ├── org.eclipse.e4.ui.workbench.swt │ │ │ │ └── dialog_settings.xml │ │ │ ├── org.eclipse.e4.workbench │ │ │ │ └── workbench.xmi │ │ │ ├── org.eclipse.epp.logging.aeri.ide │ │ │ │ ├── com.genuitec.eclipse.aeri.server1 │ │ │ │ │ ├── http-cache.lucene60 │ │ │ │ │ │ ├── segments_1 │ │ │ │ │ │ └── write.lock │ │ │ │ │ ├── local-history.lucene60 │ │ │ │ │ │ ├── _0.cfe │ │ │ │ │ │ ├── _0.cfs │ │ │ │ │ │ ├── _0.si │ │ │ │ │ │ ├── segments_1 │ │ │ │ │ │ └── write.lock │ │ │ │ │ └── server-config.json │ │ │ │ └── org.eclipse.epp.logging.aeri.ide.server │ │ │ │ │ ├── http-cache.lucene60 │ │ │ │ │ ├── segments_1 │ │ │ │ │ └── write.lock │ │ │ │ │ ├── local-history.lucene60 │ │ │ │ │ ├── _0.cfe │ │ │ │ │ ├── _0.cfs │ │ │ │ │ ├── _0.si │ │ │ │ │ ├── segments_1 │ │ │ │ │ └── write.lock │ │ │ │ │ └── server-config.json │ │ │ ├── org.eclipse.jdt.core │ │ │ │ ├── assumedExternalFilesCache │ │ │ │ ├── externalFilesCache │ │ │ │ ├── index.db │ │ │ │ ├── javaLikeNames.txt │ │ │ │ ├── nonChainingJarsCache │ │ │ │ └── variablesAndContainers.dat │ │ │ ├── org.eclipse.jdt.launching │ │ │ │ ├── .install.xml │ │ │ │ └── libraryInfos.xml │ │ │ ├── org.eclipse.jdt.ui │ │ │ │ ├── OpenTypeHistory.xml │ │ │ │ ├── QualifiedTypeNameHistory.xml │ │ │ │ └── dialog_settings.xml │ │ │ ├── org.eclipse.m2e.core.ui │ │ │ │ └── dialog_settings.xml │ │ │ ├── org.eclipse.m2e.core │ │ │ │ ├── archetypesInfo.xml │ │ │ │ ├── nexus │ │ │ │ │ ├── 05b0fe8524860bd73cbb07ef30fb34cc │ │ │ │ │ │ ├── _0.cfs │ │ │ │ │ │ ├── _0_1.del │ │ │ │ │ │ ├── _1.cfs │ │ │ │ │ │ ├── segments.gen │ │ │ │ │ │ └── segments_3 │ │ │ │ │ ├── 1a083f53cf00fc0572078db43b350c80 │ │ │ │ │ │ ├── _0.cfs │ │ │ │ │ │ ├── _0_1.del │ │ │ │ │ │ ├── _1.cfs │ │ │ │ │ │ ├── segments.gen │ │ │ │ │ │ └── segments_3 │ │ │ │ │ ├── 54d710c19a68c8d74e529be392235145 │ │ │ │ │ │ ├── _0.cfs │ │ │ │ │ │ ├── segments.gen │ │ │ │ │ │ ├── segments_2 │ │ │ │ │ │ └── write.lock │ │ │ │ │ ├── 830bc118332e77292949ed1e6d2fabe0 │ │ │ │ │ │ ├── _3.cfs │ │ │ │ │ │ ├── _3_1.del │ │ │ │ │ │ ├── _4.cfs │ │ │ │ │ │ ├── segments.gen │ │ │ │ │ │ ├── segments_6 │ │ │ │ │ │ └── write.lock │ │ │ │ │ └── b74dc6891a0540aeb8c9da4c34662ecb │ │ │ │ │ │ ├── _0.cfs │ │ │ │ │ │ ├── segments.gen │ │ │ │ │ │ ├── segments_2 │ │ │ │ │ │ └── write.lock │ │ │ │ └── workspaceState.ser │ │ │ ├── org.eclipse.m2e.logback.configuration │ │ │ │ ├── 0.log │ │ │ │ └── logback.1.8.2.20171007-0217.xml │ │ │ ├── org.eclipse.oomph.setup │ │ │ │ └── workspace.setup │ │ │ ├── org.eclipse.pde.core │ │ │ │ └── .cache │ │ │ │ │ └── clean-cache.properties │ │ │ ├── org.eclipse.rse.core │ │ │ │ ├── .log │ │ │ │ ├── initializerMarks │ │ │ │ │ └── org.eclipse.rse.internal.core.RSELocalConnectionInitializer.mark │ │ │ │ └── profiles │ │ │ │ │ └── PRF.desktop-au5mkug_32623 │ │ │ │ │ ├── FP.local.files_0 │ │ │ │ │ └── node.properties │ │ │ │ │ ├── H.local_16 │ │ │ │ │ └── node.properties │ │ │ │ │ └── node.properties │ │ │ ├── org.eclipse.rse.ui │ │ │ │ └── .log │ │ │ ├── org.eclipse.ui.intro │ │ │ │ └── introstate │ │ │ ├── org.eclipse.ui.workbench │ │ │ │ ├── dialog_settings.xml │ │ │ │ └── workingsets.xml │ │ │ ├── org.eclipse.ui │ │ │ │ └── dialog_settings.xml │ │ │ ├── org.eclipse.wst.jsdt.core │ │ │ │ └── variablesAndContainers.dat │ │ │ ├── org.springframework.ide.eclipse.aop.core │ │ │ │ └── .state │ │ │ └── org.springframework.ide.eclipse.osgi.targetdefinition │ │ │ │ └── 3.9.3.201803200843-RELEASE │ │ │ │ └── target │ │ │ │ ├── com.springsource.edu.emory.mathcs.backport-3.1.0.jar │ │ │ │ ├── com.springsource.net.sf.cglib-2.1.3.jar │ │ │ │ ├── com.springsource.org.aopalliance-1.0.0.jar │ │ │ │ ├── com.springsource.org.apache.log4j-1.2.15.jar │ │ │ │ ├── com.springsource.org.objectweb.asm-2.2.3.jar │ │ │ │ ├── com.springsource.slf4j.api-1.5.6.jar │ │ │ │ ├── com.springsource.slf4j.log4j-1.5.6.jar │ │ │ │ ├── com.springsource.slf4j.org.apache.commons.logging-1.5.6.jar │ │ │ │ ├── org.eclipse.osgi-3.5.1.R35x_v20091005.jar │ │ │ │ ├── org.springframework.aop-3.0.1.RELEASE-A.jar │ │ │ │ ├── org.springframework.beans-3.0.1.RELEASE-A.jar │ │ │ │ ├── org.springframework.context-3.0.1.RELEASE-A.jar │ │ │ │ ├── org.springframework.context.support-3.0.1.RELEASE-A.jar │ │ │ │ ├── org.springframework.core-3.0.1.RELEASE-A.jar │ │ │ │ ├── org.springframework.osgi.core-1.2.1.jar │ │ │ │ ├── org.springframework.osgi.extender-1.2.1.jar │ │ │ │ ├── org.springframework.osgi.extensions.annotation-1.2.1.jar │ │ │ │ └── org.springframework.osgi.io-1.2.1.jar │ │ └── version.ini │ └── RemoteSystemsTempFiles │ │ └── .project └── springboot05-mysql │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── wdjr │ │ │ └── springboot │ │ │ └── Springboot05MysqlApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── wdjr │ └── springboot │ └── Springboot05MysqlApplicationTests.java ├── SpringBoot2 ├── amqp │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── amqp │ │ │ │ ├── AmqpApplication.java │ │ │ │ ├── bean │ │ │ │ └── Book.java │ │ │ │ ├── config │ │ │ │ └── MyAMQPConfig.java │ │ │ │ └── service │ │ │ │ └── BookService.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── amqp │ │ └── AmqpApplicationTests.java ├── spring-boot-03-elastic │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── data │ │ └── elasticsearch │ │ │ └── nodes │ │ │ └── 0 │ │ │ ├── _state │ │ │ └── global-1.st │ │ │ └── node.lock │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBoot03ElasticApplication.java │ │ │ │ ├── bean │ │ │ │ ├── Article.java │ │ │ │ └── Book.java │ │ │ │ └── repositry │ │ │ │ └── BookRepositry.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot03ElasticApplicationTests.java ├── spring-boot-07-config │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── springboot │ │ │ │ ├── SpringBoot07ConfigApplication.java │ │ │ │ └── listener │ │ │ │ ├── HelloApplicationContextInitializer.java │ │ │ │ ├── HelloApplicationRunner.java │ │ │ │ ├── HelloCommandLineRunner.java │ │ │ │ └── HelloSpringApplicationRunListener.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── spring.factories │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── springboot │ │ └── SpringBoot07ConfigApplicationTests.java ├── springboot-01-cache │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ └── cache │ │ │ │ ├── Springboot01CacheApplication.java │ │ │ │ ├── bean │ │ │ │ ├── Department.java │ │ │ │ └── Employee.java │ │ │ │ ├── config │ │ │ │ └── MyRedisConfig.java │ │ │ │ ├── controller │ │ │ │ └── EmployeeController.java │ │ │ │ ├── mapper │ │ │ │ ├── DepartmentMapper.java │ │ │ │ └── EmployeeMapper.java │ │ │ │ └── service │ │ │ │ └── EmployeeService.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── cache │ │ └── Springboot01CacheApplicationTests.java └── springboot-06-dubbo │ ├── .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_alibaba_boot_dubbo_spring_boot_actuator_0_1_0.xml │ │ ├── Maven__com_alibaba_boot_dubbo_spring_boot_autoconfigure_0_1_0.xml │ │ ├── Maven__com_alibaba_boot_dubbo_spring_boot_starter_0_1_0.xml │ │ ├── Maven__com_alibaba_dubbo_2_5_10.xml │ │ ├── Maven__com_fasterxml_classmate_1_3_4.xml │ │ ├── Maven__com_fasterxml_jackson_core_jackson_annotations_2_8_0.xml │ │ ├── Maven__com_fasterxml_jackson_core_jackson_core_2_8_11.xml │ │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_8_11_1.xml │ │ ├── Maven__com_github_sgroschupf_zkclient_0_1.xml │ │ ├── Maven__com_google_guava_guava_16_0_1.xml │ │ ├── Maven__com_jayway_jsonpath_json_path_2_2_0.xml │ │ ├── Maven__com_vaadin_external_google_android_json_0_0_20131108_vaadin1.xml │ │ ├── Maven__io_netty_netty_3_10_5_Final.xml │ │ ├── Maven__javax_validation_validation_api_1_1_0_Final.xml │ │ ├── Maven__jline_jline_0_9_94.xml │ │ ├── Maven__junit_junit_4_12.xml │ │ ├── Maven__log4j_log4j_1_2_14.xml │ │ ├── Maven__net_minidev_accessors_smart_1_1.xml │ │ ├── Maven__net_minidev_json_smart_2_2_1.xml │ │ ├── Maven__org_apache_curator_curator_client_2_12_0.xml │ │ ├── Maven__org_apache_curator_curator_framework_2_12_0.xml │ │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_core_8_5_31.xml │ │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_el_8_5_31.xml │ │ ├── Maven__org_apache_tomcat_embed_tomcat_embed_websocket_8_5_31.xml │ │ ├── Maven__org_apache_tomcat_tomcat_annotations_api_8_5_31.xml │ │ ├── Maven__org_apache_zookeeper_zookeeper_3_4_9.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_hibernate_hibernate_validator_5_3_6_Final.xml │ │ ├── Maven__org_javassist_javassist_3_21_0_GA.xml │ │ ├── Maven__org_jboss_logging_jboss_logging_3_3_2_Final.xml │ │ ├── Maven__org_jboss_netty_netty_3_2_5_Final.xml │ │ ├── Maven__org_mockito_mockito_core_1_10_19.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_13_RELEASE.xml │ │ ├── Maven__org_springframework_boot_spring_boot_autoconfigure_1_5_13_RELEASE.xml │ │ ├── Maven__org_springframework_boot_spring_boot_starter_1_5_13_RELEASE.xml │ │ ├── Maven__org_springframework_boot_spring_boot_starter_logging_1_5_13_RELEASE.xml │ │ ├── Maven__org_springframework_boot_spring_boot_starter_test_1_5_13_RELEASE.xml │ │ ├── Maven__org_springframework_boot_spring_boot_starter_tomcat_1_5_13_RELEASE.xml │ │ ├── Maven__org_springframework_boot_spring_boot_starter_web_1_5_13_RELEASE.xml │ │ ├── Maven__org_springframework_boot_spring_boot_test_1_5_13_RELEASE.xml │ │ ├── Maven__org_springframework_boot_spring_boot_test_autoconfigure_1_5_13_RELEASE.xml │ │ ├── Maven__org_springframework_spring_aop_4_3_17_RELEASE.xml │ │ ├── Maven__org_springframework_spring_beans_4_3_17_RELEASE.xml │ │ ├── Maven__org_springframework_spring_context_4_3_17_RELEASE.xml │ │ ├── Maven__org_springframework_spring_core_4_3_17_RELEASE.xml │ │ ├── Maven__org_springframework_spring_expression_4_3_17_RELEASE.xml │ │ ├── Maven__org_springframework_spring_test_4_3_17_RELEASE.xml │ │ ├── Maven__org_springframework_spring_web_4_3_17_RELEASE.xml │ │ ├── Maven__org_springframework_spring_webmvc_4_3_17_RELEASE.xml │ │ └── Maven__org_yaml_snakeyaml_1_17.xml │ ├── misc.xml │ ├── modules.xml │ ├── uiDesigner.xml │ └── workspace.xml │ ├── comsumer-user │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── wdjr │ │ │ │ ├── ticket │ │ │ │ └── service │ │ │ │ │ └── TicketService.java │ │ │ │ └── user │ │ │ │ ├── ComsumerUserApplication.java │ │ │ │ └── service │ │ │ │ └── UserService.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── wdjr │ │ └── user │ │ └── ComsumerUserApplicationTests.java │ └── provider-ticket │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── wdjr │ │ │ └── ticket │ │ │ ├── ProviderTicketApplication.java │ │ │ └── service │ │ │ ├── TicketService.java │ │ │ └── TicketServiceImp.java │ └── resources │ │ ├── application.properties │ │ └── application.yml │ └── test │ └── java │ └── com │ └── wdjr │ └── ticket │ └── ProviderTicketApplicationTests.java ├── SpringBoot入门简介.md ├── SpringBoot入门简介.pdf ├── SpringBoot高级教程.md ├── images ├── 1.configuration.jpg ├── 10.slf4jandlogback.jpg ├── 11.log4j.jpg ├── 12.jquery.jpg ├── 13.static.jpg ├── 14.static-css.jpg ├── 15.thtmeleaf-th01.jpg ├── 15.thtmeleaf-th02.jpg ├── 15.thtmeleaf-th03.jpg ├── 16.national.jpg ├── 17.encoding.jpg ├── 18.accept-language.jpg ├── 19.table list.jpg ├── 2.factories.jpg ├── 20.error.jpg ├── 21.error-static.jpg ├── 22.4xxhtml.jpg ├── 23.server-config.jpg ├── 23.tomcat emd.jpg ├── 24.EmdServletFactory.jpg ├── 25.EmdServletContainer.jpg ├── 26.tomcat1.jpg ├── 27.tomcat2.jpg ├── 28.tomcat3.jpg ├── 3.Spring Intializer.jpg ├── 30.tomcat4.jpg ├── 31.tomcat5.jpg ├── 32.tomcat6.jpg ├── 33.tomcat7.jpg ├── 34.tomcat8.jpg ├── 35.tomcat9.jpg ├── 36.tomcat10.jpg ├── 37.tomcat11.jpg ├── 38.tomcat12.jpg ├── 39.tomcat13.jpg ├── 4.MyAppConfig.jpg ├── 40.demo1.jpg ├── 41.demo2.jpg ├── 42.servletContainerInit.jpg ├── 43.webapplication.jpg ├── 44.docker1.jpg ├── 45.schema-all.jpg ├── 46.department.jpg ├── 47.hello.jpg ├── 48.druid.jpg ├── 49.mybatis.jpg ├── 5.comandLine.jpg ├── 50.mybatisxml.jpg ├── 51.JPA.jpg ├── 52.applicationCotextInitializer.jpg ├── 53.Listener.jpg ├── 54.listener2.jpg ├── 55.autoconfig-starter.jpg ├── 56.starter01.jpg ├── 57.starter02.jpg ├── 58.starter03.jpg ├── 59.starter04.jpg ├── 6.vmCommandLine.jpg ├── 60.starter05.jpg ├── 61.starter06.jpg ├── 62.starter07.jpg ├── 63.starter08.jpg ├── 64.starter09.jpg ├── 65.starter10.jpg ├── 66.starter-build01.jpg ├── 67.starter-build02.jpg ├── 68.starter-build03.jpg ├── 69.starter-build04.jpg ├── 7.priority.jpg ├── 70.starter-build05.jpg ├── 8.slf4j.jpg └── 9.IDEAdependencies.jpg └── images2 ├── 01.postman.jpg ├── 02.postmanget.jpg ├── 03.dubbo.jpg ├── 03.dubbo2.jpg ├── 04.dubbo+zk3.jpg ├── 05.springCloud.jpg ├── 06.EurekaServer.jpg ├── 07.provider-ticket.jpg ├── 07.provider-ticket02.jpg ├── 08.consumer.jpg ├── 09.同步.png ├── 10.异步.png ├── 11.消息.png ├── 12.应用解耦.jpg ├── 13.RabbitMQ结构.png ├── 13.rabbitmq.jpg ├── 14.RabbitMQDirect.png ├── 14.RabbitMQfaout.png ├── 14.RabbitMQtopic.png ├── 15.exchanges.jpg ├── 16.queues.jpg ├── 17.bind.jpg ├── 18,bindfanout.jpg ├── 19,bind_topic.jpg ├── 20.publish-direct.jpg ├── 21.queue-direct.jpg ├── 22.msg-direct.jpg ├── 23.pub-fanout.jpg ├── 24.queue-fanout.jpg ├── 25.msg-fanout.jpg ├── 26.pub-topic.jpg ├── 27.que-topic.jpg ├── 28.msg-topic.jpg ├── 29.dir-idea.jpg ├── 30.dir-idea-json.jpg ├── 31.createAMQP.jpg ├── 32.createQueue.jpg ├── 33.createBinding.jpg ├── 34.elastic-head.jpg ├── 35.cache.jpg ├── 35.cache.png ├── 36.importcache.jpg ├── 37.redis.jpg ├── 38.redis02.jpg ├── 38.redis03.jpg └── 39.redis04.jpg /SpringBoot/.idea/MyBootstrap.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SpringBoot/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /SpringBoot/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /SpringBoot/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SpringBoot/NewsProject/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /SpringBoot/NewsProject/static/font/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/NewsProject/static/font/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /SpringBoot/NewsProject/static/font/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/NewsProject/static/font/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /SpringBoot/NewsProject/static/font/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/NewsProject/static/font/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /SpringBoot/NewsProject/static/font/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/NewsProject/static/font/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /SpringBoot/NewsProject/static/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /SpringBoot/spring-boot-01-hello-quick/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-01-hello-quick/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-01-hello-quick/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-01-hello-quick/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-01-hello-quick/src/main/java/com/wdjr/springbootquick/SpringBoot01HelloQuickApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springbootquick; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot01HelloQuickApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot01HelloQuickApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-01-hello-quick/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9000 -------------------------------------------------------------------------------- /SpringBoot/spring-boot-01-hello-quick/src/test/java/com/wdjr/springbootquick/SpringBoot01HelloQuickApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springbootquick; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBoot01HelloQuickApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-02-config/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/src/main/java/com/wdjr/springboot/SpringBoot02ConfigApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.context.annotation.ImportResource; 6 | 7 | //@ImportResource(locations={"classpath:beans.xml"}) 8 | @SpringBootApplication 9 | public class SpringBoot02ConfigApplication { 10 | 11 | public static void main(String[] args) { 12 | SpringApplication.run(SpringBoot02ConfigApplication.class, args); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/src/main/java/com/wdjr/springboot/controller/HelloController.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.controller; 2 | 3 | import org.springframework.beans.factory.annotation.Value; 4 | import org.springframework.web.bind.annotation.RequestMapping; 5 | import org.springframework.web.bind.annotation.RestController; 6 | 7 | @RestController 8 | public class HelloController { 9 | 10 | @Value("${person.last-name}") 11 | private String name; 12 | @RequestMapping("/hello") 13 | public String sayHello(){ 14 | return "Hello"+ name; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/src/main/java/com/wdjr/springboot/service/HelloService.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.service; 2 | 3 | public class HelloService { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-02-config/src/main/resources/application-dev.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/src/main/resources/application-pro.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-02-config/src/main/resources/application-pro.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | #server.port=9000 2 | #spring.profiles.active=dev 3 | ##idea\u914D\u7F6E\u6587\u4EF6utf-8 4 | ##properties \u9ED8\u8BA4GBK 5 | person.age=${random.int} 6 | person.boss=false 7 | person.last-name=\u5F20\u4E09${random.uuid} 8 | person.maps.k1=v1 9 | person.maps.k2=v2 10 | person.lists=a,b,c 11 | person.dog.name=${person.hello:hello}wanghuahu 12 | person.dog.age=15 -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | 2 | server: 3 | port: 8081 4 | spring: 5 | profiles: 6 | active: prod 7 | 8 | --- 9 | 10 | server: 11 | port: 9001 12 | spring: 13 | profiles: dev 14 | 15 | --- 16 | server: 17 | port: 80 18 | spring: 19 | profiles: prod 20 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/src/main/resources/bean.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-02-config/src/main/resources/person.properties: -------------------------------------------------------------------------------- 1 | person.age=12 2 | person.boss=false 3 | person.last-name=\u674E\u56DB 4 | person.maps.k1=v1 5 | person.maps.k2=v2 6 | person.lists=a,b,c 7 | person.dog.name=wanghuahu 8 | person.dog.age=15 -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/.idea/libraries/Maven__net_minidev_json_smart_2_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/.idea/libraries/Maven__org_objenesis_objenesis_2_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/.idea/libraries/Maven__org_ow2_asm_asm_5_0_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/.idea/libraries/Maven__org_yaml_snakeyaml_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/src/main/java/com/wdjr/springboot/SpringBoot03LoggingApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot03LoggingApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot03LoggingApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-03-logging/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/target/classes/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-03-logging/target/classes/application.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/target/classes/com/wdjr/springboot/SpringBoot03LoggingApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-03-logging/target/classes/com/wdjr/springboot/SpringBoot03LoggingApplication.class -------------------------------------------------------------------------------- /SpringBoot/spring-boot-03-logging/target/test-classes/com/wdjr/springboot/SpringBoot03LoggingApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-03-logging/target/test-classes/com/wdjr/springboot/SpringBoot03LoggingApplicationTests.class -------------------------------------------------------------------------------- /SpringBoot/spring-boot-04-web-jsp/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-04-web-jsp/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-04-web-jsp/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-04-web-jsp/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-04-web-jsp/src/main/java/com/wdjr/springboot/ServletInitializer.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.builder.SpringApplicationBuilder; 4 | import org.springframework.boot.web.support.SpringBootServletInitializer; 5 | 6 | public class ServletInitializer extends SpringBootServletInitializer { 7 | 8 | @Override 9 | protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { 10 | return application.sources(SpringBoot04WebJspApplication.class); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-04-web-jsp/src/main/java/com/wdjr/springboot/SpringBoot04WebJspApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot04WebJspApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot04WebJspApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-04-web-jsp/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-04-web-jsp/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-04-web-jsp/src/test/java/com/wdjr/springboot/SpringBoot04WebJspApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBoot04WebJspApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jdbc/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jdbc/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-06-data-jdbc/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jdbc/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jdbc/src/main/java/com/wdjr/springboot/SpringBoot06DataJdbcApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot06DataJdbcApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot06DataJdbcApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jdbc/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-06-data-jdbc/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jpa/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jpa/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-06-data-jpa/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jpa/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jpa/src/main/java/com/wdjr/springboot/SpringBoot06DataJpaApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot06DataJpaApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot06DataJpaApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jpa/src/main/java/com/wdjr/springboot/repository/UserRepository.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.repository; 2 | 3 | import com.wdjr.springboot.entity.User; 4 | import org.springframework.data.jpa.repository.JpaRepository; 5 | 6 | //继承jpaRepository 7 | public interface UserRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jpa/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-06-data-jpa/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jpa/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | datasource: 3 | url: jdbc:mysql://192.168.179.131/jpa 4 | username: root 5 | password: Welcome_1 6 | driver-class-name: com.mysql.jdbc.Driver 7 | jpa: 8 | hibernate: 9 | #更新或创建 10 | ddl-auto: update 11 | show-sql: true -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-jpa/src/test/java/com/wdjr/springboot/SpringBoot06DataJpaApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBoot06DataJpaApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-mybatis/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-mybatis/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-06-data-mybatis/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-mybatis/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-mybatis/src/main/java/com/wdjr/springboot/SpringBoot06DataMybatisApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.mybatis.spring.annotation.MapperScan; 4 | import org.springframework.boot.SpringApplication; 5 | import org.springframework.boot.autoconfigure.SpringBootApplication; 6 | 7 | 8 | @MapperScan(value = "com.wdjr.springboot.mapper") 9 | @SpringBootApplication 10 | public class SpringBoot06DataMybatisApplication { 11 | 12 | public static void main(String[] args) { 13 | SpringApplication.run(SpringBoot06DataMybatisApplication.class, args); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-mybatis/src/main/java/com/wdjr/springboot/mapper/EmployeeMapper.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.mapper; 2 | 3 | import com.wdjr.springboot.bean.Employee; 4 | 5 | public interface EmployeeMapper { 6 | 7 | public Employee getEmpById(Integer id); 8 | 9 | public void insetEmp(Employee employee); 10 | } 11 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-mybatis/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-06-data-mybatis/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-mybatis/src/main/resources/mybatis/mybatis-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-06-data-mybatis/src/test/java/com/wdjr/springboot/SpringBoot06DataMybatisApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBoot06DataMybatisApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-07-config/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-07-config/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-07-config/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-07-config/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-07-config/src/main/java/com/wdjr/springboot/SpringBoot07ConfigApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot07ConfigApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot07ConfigApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-07-config/src/main/java/com/wdjr/springboot/listener/HelloApplicationRunner.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.listener; 2 | 3 | import org.springframework.boot.ApplicationArguments; 4 | import org.springframework.boot.ApplicationRunner; 5 | import org.springframework.stereotype.Component; 6 | 7 | 8 | @Component 9 | public class HelloApplicationRunner implements ApplicationRunner { 10 | @Override 11 | public void run(ApplicationArguments args) throws Exception { 12 | System.out.println("ApplicationRunner.....run...."); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-07-config/src/main/java/com/wdjr/springboot/listener/HelloCommandLineRunner.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.listener; 2 | 3 | import org.springframework.boot.CommandLineRunner; 4 | import org.springframework.stereotype.Component; 5 | 6 | import java.util.Arrays; 7 | 8 | @Component 9 | public class HelloCommandLineRunner implements CommandLineRunner { 10 | @Override 11 | public void run(String... args) throws Exception { 12 | System.out.println("CommandLineRunner......run....."+Arrays.asList(args)); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-07-config/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- 1 | # Initializers 2 | org.springframework.context.ApplicationContextInitializer=\ 3 | com.wdjr.springboot.listener.HelloApplicationContextInitializer 4 | 5 | org.springframework.boot.SpringApplicationRunListener=\ 6 | com.wdjr.springboot.listener.HelloSpringApplicationRunListener 7 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-07-config/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-07-config/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-07-config/src/test/java/com/wdjr/springboot/SpringBoot07ConfigApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBoot07ConfigApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-08-starter-test/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test/src/main/java/com/wdjr/springboot/SpringBoot08StarterTestApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot08StarterTestApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot08StarterTestApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-08-starter-test/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test/src/test/java/com/wdjr/springboot/SpringBoot08StarterTestApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBoot08StarterTestApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test01/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test01/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-08-starter-test01/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test01/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test01/src/main/java/com/wdjr/springboot/SpringBoot08StarterTest01Application.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot08StarterTest01Application { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot08StarterTest01Application.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test01/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | wdjr.hello.prefix=Prefix 2 | wdjr.hello.suffix=Suffix -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter-test01/src/test/java/com/wdjr/springboot/SpringBoot08StarterTest01ApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBoot08StarterTest01ApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_22.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/.idea/libraries/Maven__org_yaml_snakeyaml_1_17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter-autoconfigurer/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter-autoconfigurer/src/main/java/com/wdjr/starter/HelloService.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.starter; 2 | 3 | public class HelloService { 4 | 5 | HelloProperties helloProperties; 6 | 7 | public HelloProperties getHelloProperties() { 8 | return helloProperties; 9 | } 10 | 11 | public void setHelloProperties(HelloProperties helloProperties) { 12 | this.helloProperties = helloProperties; 13 | } 14 | 15 | public String sayHllo(String name){ 16 | return helloProperties.getPrefix()+"-"+name+"-"+helloProperties.getSuffix(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter-autoconfigurer/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- 1 | org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ 2 | com.wdjr.starter.HelloServiceAutoConfiguration -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Tue May 15 17:59:22 CST 2018 3 | version=1.0-SNAPSHOT 4 | groupId=com.wdjr.starter 5 | artifactId=wdjr-spring-boot-starter 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter/target/wdjr-spring-boot-starter-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-08-starter/wdjr-spring-boot-starter/target/wdjr-spring-boot-starter-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-09-starter/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-09-starter/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-09-starter/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-09-starter/wdjr-spring-boot-starter/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 4.0.0 6 | 7 | com.wdjr.starter 8 | wdjr-spring-boot-starter 9 | 1.0-SNAPSHOT 10 | 11 | 12 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter-test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter-test/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-10-starter-test/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter-test/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter-test/src/main/java/com/wdjr/springboot/SpringBoot10StarterTestApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot10StarterTestApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot10StarterTestApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter-test/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | lxy.hello.prefix=Starter- 2 | lxy.hello.suffix=-Success -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter-test/src/test/java/com/wdjr/springboot/SpringBoot10StarterTestApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBoot10StarterTestApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_22.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/.idea/libraries/Maven__org_yaml_snakeyaml_1_17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter-autoconfigurer/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter-autoconfigurer/src/main/java/com/lxy/starter/HelloService.java: -------------------------------------------------------------------------------- 1 | package com.lxy.starter; 2 | 3 | public class HelloService { 4 | 5 | HelloProperties helloProperties; 6 | 7 | public HelloProperties getHelloProperties() { 8 | return helloProperties; 9 | } 10 | 11 | public void setHelloProperties(HelloProperties helloProperties) { 12 | this.helloProperties = helloProperties; 13 | } 14 | 15 | public String sayHello(String name){ 16 | return helloProperties.getPrefix()+name+helloProperties.getSuffix(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter-autoconfigurer/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- 1 | org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ 2 | com.lxy.starter.HelloServiceAutoConfiguration -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter/target/lxy-spring-boot-starter-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter/target/lxy-spring-boot-starter-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Tue May 15 18:45:39 CST 2018 3 | version=1.0-SNAPSHOT 4 | groupId=com.lxy.starter 5 | artifactId=lxy-spring-boot-starter 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-10-starter/lxy-spring-boot-starter/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.idea/libraries/Maven__net_minidev_json_smart_2_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.idea/libraries/Maven__org_objenesis_objenesis_2_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.idea/libraries/Maven__org_ow2_asm_asm_5_0_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.idea/libraries/Maven__org_yaml_snakeyaml_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-config-02/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/applicaiton.properties: -------------------------------------------------------------------------------- 1 | server.port=9002 -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/config/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-config-02/config/application.properties -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/src/main/java/com/wdjr/springboot/SpringBootConfig02Application.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBootConfig02Application { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBootConfig02Application.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/src/main/java/com/wdjr/springboot/contoller/HelloController.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.contoller; 2 | 3 | import org.springframework.web.bind.annotation.RequestMapping; 4 | import org.springframework.web.bind.annotation.RestController; 5 | 6 | @RestController 7 | public class HelloController { 8 | 9 | @RequestMapping("/hello") 10 | public String hello(){ 11 | return "Hello World"; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9000 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | ser -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/src/main/resources/config/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9001 -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/src/test/java/com/wdjr/springboot/SpringBootConfig02ApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBootConfig02ApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9000 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | ser -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/classes/com/wdjr/springboot/SpringBootConfig02Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-config-02/target/classes/com/wdjr/springboot/SpringBootConfig02Application.class -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/classes/com/wdjr/springboot/contoller/HelloController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-config-02/target/classes/com/wdjr/springboot/contoller/HelloController.class -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/classes/config/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9001 -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Created by Apache Maven 3.5.2 2 | version=0.0.1-SNAPSHOT 3 | groupId=com.wdjr 4 | artifactId=spring-boot-config-02 5 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-config-02/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | E:\work\spring-boot-config-02\src\main\java\com\wdjr\springboot\contoller\HelloController.java 2 | E:\work\spring-boot-config-02\src\main\java\com\wdjr\springboot\SpringBootConfig02Application.java 3 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-config-02/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | E:\work\spring-boot-config-02\src\test\java\com\wdjr\springboot\SpringBootConfig02ApplicationTests.java 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/spring-boot-config-02-0.0.1-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-config-02/target/spring-boot-config-02-0.0.1-SNAPSHOT.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/spring-boot-config-02-0.0.1-SNAPSHOT.jar.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-config-02/target/spring-boot-config-02-0.0.1-SNAPSHOT.jar.original -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/surefire-reports/com.wdjr.springboot.SpringBootConfig02ApplicationTests.txt: -------------------------------------------------------------------------------- 1 | ------------------------------------------------------------------------------- 2 | Test set: com.wdjr.springboot.SpringBootConfig02ApplicationTests 3 | ------------------------------------------------------------------------------- 4 | Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.418 s - in com.wdjr.springboot.SpringBootConfig02ApplicationTests 5 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-config-02/target/test-classes/com/wdjr/springboot/SpringBootConfig02ApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-config-02/target/test-classes/com/wdjr/springboot/SpringBootConfig02ApplicationTests.class -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot-web-04-jsp/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/src/main/java/com/wdjr/springboot/ServletInitializer.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.builder.SpringApplicationBuilder; 4 | import org.springframework.boot.web.support.SpringBootServletInitializer; 5 | 6 | public class ServletInitializer extends SpringBootServletInitializer { 7 | 8 | @Override 9 | protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { 10 | return application.sources(SpringBootWeb04JspApplication.class); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/src/main/java/com/wdjr/springboot/SpringBootWeb04JspApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBootWeb04JspApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBootWeb04JspApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/src/main/java/com/wdjr/springboot/controller/HelloController.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.controller; 2 | 3 | import org.springframework.stereotype.Controller; 4 | import org.springframework.ui.Model; 5 | import org.springframework.web.bind.annotation.GetMapping; 6 | 7 | @Controller 8 | public class HelloController { 9 | @GetMapping("/hello") 10 | public String hello(Model model){ 11 | model.addAttribute("message","这是Controller传过来的message"); 12 | return "success"; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.mvc.view.prefix=/WEB-INF/jsp/ 2 | 3 | spring.mvc.view.suffix=.jsp 4 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/src/main/webapp/WEB-INF/jsp/success.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: 15272 4 | Date: 2018/5/10 5 | Time: 15:08 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Success 12 | 13 | 14 |

Success

15 | message:${message} 16 | 17 | 18 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot-web-04-jsp/src/test/java/com/wdjr/springboot/SpringBootWeb04JspApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBootWeb04JspApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/spring-boot01-helloworld.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/src/main/java/com/wdjr/HelloWorldMainApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | /** 7 | * 8 | */ 9 | @SpringBootApplication 10 | public class HelloWorldMainApplication { 11 | 12 | public static void main(String[] args) { 13 | //Spring应用启动 14 | SpringApplication.run(HelloWorldMainApplication.class,args); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/src/main/java/com/wdjr/controller/HelloController.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.controller; 2 | 3 | import org.springframework.stereotype.Controller; 4 | import org.springframework.web.bind.annotation.RequestMapping; 5 | import org.springframework.web.bind.annotation.ResponseBody; 6 | 7 | @Controller 8 | public class HelloController { 9 | 10 | @ResponseBody 11 | @RequestMapping("/hello") 12 | public String hello(){ 13 | return "Hello World"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/target/classes/com/wdjr/HelloWorldMainApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot01-helloworld/target/classes/com/wdjr/HelloWorldMainApplication.class -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/target/classes/com/wdjr/controller/HelloController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot01-helloworld/target/classes/com/wdjr/controller/HelloController.class -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Apache Maven 2 | #Wed May 02 17:26:01 CST 2018 3 | version=1.0-SNAPSHOT 4 | groupId=com.wdjr 5 | artifactId=spring-boot01-helloworld 6 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot01-helloworld/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | E:\work\spring-boot01-helloworld\src\main\java\com\wdjr\controller\HelloController.java 2 | E:\work\spring-boot01-helloworld\src\main\java\com\wdjr\HelloWorldMainApplication.java 3 | -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot01-helloworld/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/target/spring-boot01-helloworld-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot01-helloworld/target/spring-boot01-helloworld-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /SpringBoot/spring-boot01-helloworld/target/spring-boot01-helloworld-1.0-SNAPSHOT.jar.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/spring-boot01-helloworld/target/spring-boot01-helloworld-1.0-SNAPSHOT.jar.original -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot-04-web-restfulcrud/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/main/java/com/wdjr/springboot/exception/UserNotExitsException.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.exception; 2 | 3 | public class UserNotExitsException extends RuntimeException { 4 | public UserNotExitsException(){ 5 | super("用户不存在"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/main/java/com/wdjr/springboot/listener/MyListener.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.listener; 2 | 3 | import javax.servlet.ServletContextEvent; 4 | import javax.servlet.ServletContextListener; 5 | 6 | public class MyListener implements ServletContextListener { 7 | @Override 8 | public void contextInitialized(ServletContextEvent sce) { 9 | System.out.println(".........web应用启动.........."); 10 | } 11 | 12 | @Override 13 | public void contextDestroyed(ServletContextEvent sce) { 14 | System.out.println(".........web应用销毁.........."); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/main/java/com/wdjr/springboot/servlet/MyServlet.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.servlet; 2 | 3 | import javax.servlet.ServletException; 4 | import javax.servlet.http.HttpServlet; 5 | import javax.servlet.http.HttpServletRequest; 6 | import javax.servlet.http.HttpServletResponse; 7 | import java.io.IOException; 8 | 9 | public class MyServlet extends HttpServlet { 10 | @Override 11 | protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { 12 | resp.getWriter().write("Hello Servlet"); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.messages.basename=i18n.login 2 | #\u7981\u6B62\u6A21\u677F\u5F15\u64CE 3 | spring.thymeleaf.cache=false 4 | 5 | spring.mvc.date-format=yyyy-MM-dd 6 | 7 | server.port= -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/main/resources/i18n/login.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55~ 2 | login.password=\u5BC6\u7801~ 3 | login.remember=\u8BB0\u4F4F\u6211~ 4 | login.tip=\u8BF7\u767B\u5F55~ 5 | login.username=\u7528\u6237\u540D~ -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/main/resources/i18n/login_en_US.properties: -------------------------------------------------------------------------------- 1 | login.btn=Sign In 2 | login.password=Password 3 | login.remember=RememberMe 4 | login.tip=Please Sign In 5 | login.username=Username -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/main/resources/i18n/login_zh_CN.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55 2 | login.password=\u5BC6\u7801 3 | login.remember=\u8BB0\u4F4F\u6211 4 | login.tip=\u8BF7\u767B\u5F55 5 | login.username=\u7528\u6237\u540D -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/main/resources/templates/error/4xx.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 4xx 6 | 7 | 8 |

status: [[${status}]]

9 |

timestamp: [[${timestamp}]]

10 |

error: [[${error}]]

11 |

message: [[${message}]]

12 |

exception: [[${exception}]]

13 | 14 | -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/main/resources/templates/error/5xx.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 5xx 6 | 7 | 8 |

status: [[${status}]]

9 |

timestamp: [[${timestamp}]]

10 |

error: [[${error}]]

11 |

message: [[${message}]]

12 |

exception: [[${exception}]]

13 |

company: [[${company}]]

14 |

ext-code: [[${ext.code}]]

15 |

ext-message: [[${ext.message}]]

16 | 17 | -------------------------------------------------------------------------------- /SpringBoot/springboot-04-web-restfulcrud/src/test/java/com/wdjr/springboot/Springboot04WebRestfulcrudApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class Springboot04WebRestfulcrudApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/springboot-05-sql/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/springboot-05-sql/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot-05-sql/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/springboot-05-sql/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/springboot-05-sql/src/main/java/com/wdjr/springboot/Springboot05SqlApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class Springboot05SqlApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(Springboot05SqlApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot-05-sql/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot-05-sql/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot/springboot-05-sql/src/test/java/com/wdjr/springboot/Springboot05SqlApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class Springboot05SqlApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/.idea/libraries/Maven__net_minidev_json_smart_2_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/.idea/libraries/Maven__org_objenesis_objenesis_2_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/.idea/libraries/Maven__org_ow2_asm_asm_5_0_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/.idea/libraries/Maven__org_yaml_snakeyaml_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/src/main/java/com/wdjr/springboot/SpringbootConfigAutoApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringbootConfigAutoApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringbootConfigAutoApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | debug=true 2 | server.port=9008 -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/src/test/java/com/wdjr/springboot/SpringbootConfigAutoApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringbootConfigAutoApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | debug=true 2 | server.port=9008 -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/target/classes/com/wdjr/springboot/SpringbootConfigAutoApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot-config-auto/target/classes/com/wdjr/springboot/SpringbootConfigAutoApplication.class -------------------------------------------------------------------------------- /SpringBoot/springboot-config-auto/target/test-classes/com/wdjr/springboot/SpringbootConfigAutoApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot-config-auto/target/test-classes/com/wdjr/springboot/SpringbootConfigAutoApplicationTests.class -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.lock -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.mylyn/repositories.xml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.mylyn/repositories.xml.zip -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- 1 | /org.eclipse.core.resourcescontentCacheState1contentCacheTimestamp 1512552062378org.eclipse.jdt.corestateVersionNumber30 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.resources/.root/3.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.resources/.root/3.tree -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ajdt.ui.prefs: -------------------------------------------------------------------------------- 1 | ajde.version.at.previous.startup=2.2.4.201801301622 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | version=1 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.egit.core.prefs: -------------------------------------------------------------------------------- 1 | core_autoIgnoreDerivedResources=false 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.epp.logging.aeri.ide.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | resetSendMode=KEEP 3 | resetSendModeOn=0 4 | sendMode=NOTIFY 5 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.launching.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.launching.PREF_VM_XML=\r\n\r\n\r\n\r\n\r\n\r\n 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.j2ee.webservice.ui.prefs: -------------------------------------------------------------------------------- 1 | areThereWebServices=false 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.m2.WorkspacelifecycleMappingsLocation=E\:/work/springboot/.metadata/.plugins/org.eclipse.m2e.core/lifecycle-mapping-metadata.xml 2 | eclipse.m2.defaultRuntime=Maven-3.5.2 3 | eclipse.m2.globalSettingsFile=E\:\\Maven-3.5.2\\conf\\settings.xml 4 | eclipse.m2.runtimes=Maven-3.5.2 5 | eclipse.m2.runtimesNodes/Maven-3.5.2/location=E\:\\Maven-3.5.2 6 | eclipse.m2.runtimesNodes/Maven-3.5.2/type=EXTERNAL 7 | eclipse.preferences.version=1 8 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.m2e.discovery.pref.projects= 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.editor.xml.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.m2e.editor.xml.templates= 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.wtp.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.m2e.wtp.jaxrs.enabler.enabled=true 3 | org.eclipse.m2e.wtp.jpa.enabler.enabled=true 4 | org.eclipse.m2e.wtp.jsf.enabler.enabled=true 5 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | mylyn.attention.migrated=true 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | migrated.task.repositories.secure.store=true 3 | org.eclipse.mylyn.tasks.ui.filters.nonmatching=true 4 | org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true 5 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.rse.core.prefs: -------------------------------------------------------------------------------- 1 | activeuserprofiles=DESKTOP-AU5MKUG;Team 2 | eclipse.preferences.version=1 3 | org.eclipse.rse.systemtype.local.systemType.defaultUserId=15272 4 | useridperkey=DESKTOP-AU5MKUG.Local\=15272; 5 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.rse.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.rse.preferences.order.connections=DESKTOP-AU5MKUG.Local 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.team.ui.first_time=false 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | overviewRuler_migration=migrated_3.1 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs: -------------------------------------------------------------------------------- 1 | PROBLEMS_FILTERS_MIGRATE=true 2 | eclipse.preferences.version=1 3 | platformState=1512552062378 4 | quickStart=false 5 | tipsAndTricks=true 6 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs: -------------------------------------------------------------------------------- 1 | //org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false 2 | //org.eclipse.ui.commands/state/org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor/org.eclipse.ui.commands.radioState=xpath10 3 | PLUGINS_NOT_ACTIVATED_ON_STARTUP=;org.eclipse.m2e.discovery; 4 | eclipse.preferences.version=1 5 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.springframework.ide.eclipse.imports.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.springframework.ide.eclipse.imports.importStaticsInstanceScope=true 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.springsource.ide.eclipse.commons.configurator.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.springsource.ide.eclipse.commons.configurator.processed=true 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.springsource.ide.eclipse.commons.frameworks.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.springsource.ide.eclipse.commons.frameworks.ui.legacyconversion.done=true 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.springsource.ide.eclipse.commons.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | egit.pref.fixed.core_autoIgnoreDerivedResources=true 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/http-cache.lucene60/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/http-cache.lucene60/segments_1 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/http-cache.lucene60/write.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/http-cache.lucene60/write.lock -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/_0.cfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/_0.cfe -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/_0.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/_0.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/_0.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/_0.si -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/segments_1 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/write.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/com.genuitec.eclipse.aeri.server1/local-history.lucene60/write.lock -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache.lucene60/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache.lucene60/segments_1 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache.lucene60/write.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache.lucene60/write.lock -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/_0.cfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/_0.cfe -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/_0.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/_0.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/_0.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/_0.si -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/segments_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/segments_1 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/write.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/write.lock -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.core/index.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.core/index.db -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.core/javaLikeNames.txt: -------------------------------------------------------------------------------- 1 | aj 2 | java -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 | JRE_LIBJRE_SRC JRE_SRCROOT ASPECTJRT_LIB 2 | JUNIT_HOME ECLIPSE_HOMEJUNIT_SRC_HOMEM2_REPO -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.launching/.install.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/archetypesInfo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/05b0fe8524860bd73cbb07ef30fb34cc/_0.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/05b0fe8524860bd73cbb07ef30fb34cc/_0.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/05b0fe8524860bd73cbb07ef30fb34cc/_0_1.del: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/05b0fe8524860bd73cbb07ef30fb34cc/_1.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/05b0fe8524860bd73cbb07ef30fb34cc/_1.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/05b0fe8524860bd73cbb07ef30fb34cc/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/05b0fe8524860bd73cbb07ef30fb34cc/segments.gen -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/05b0fe8524860bd73cbb07ef30fb34cc/segments_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/05b0fe8524860bd73cbb07ef30fb34cc/segments_3 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/1a083f53cf00fc0572078db43b350c80/_0.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/1a083f53cf00fc0572078db43b350c80/_0.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/1a083f53cf00fc0572078db43b350c80/_0_1.del: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/1a083f53cf00fc0572078db43b350c80/_1.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/1a083f53cf00fc0572078db43b350c80/_1.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/1a083f53cf00fc0572078db43b350c80/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/1a083f53cf00fc0572078db43b350c80/segments.gen -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/1a083f53cf00fc0572078db43b350c80/segments_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/1a083f53cf00fc0572078db43b350c80/segments_3 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/54d710c19a68c8d74e529be392235145/_0.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/54d710c19a68c8d74e529be392235145/_0.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/54d710c19a68c8d74e529be392235145/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/54d710c19a68c8d74e529be392235145/segments.gen -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/54d710c19a68c8d74e529be392235145/segments_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/54d710c19a68c8d74e529be392235145/segments_2 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/54d710c19a68c8d74e529be392235145/write.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/54d710c19a68c8d74e529be392235145/write.lock -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/_3.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/_3.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/_3_1.del: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/_4.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/_4.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/segments.gen -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/segments_6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/segments_6 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/write.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/830bc118332e77292949ed1e6d2fabe0/write.lock -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/b74dc6891a0540aeb8c9da4c34662ecb/_0.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/b74dc6891a0540aeb8c9da4c34662ecb/_0.cfs -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/b74dc6891a0540aeb8c9da4c34662ecb/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/b74dc6891a0540aeb8c9da4c34662ecb/segments.gen -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/b74dc6891a0540aeb8c9da4c34662ecb/segments_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/b74dc6891a0540aeb8c9da4c34662ecb/segments_2 -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/b74dc6891a0540aeb8c9da4c34662ecb/write.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/nexus/b74dc6891a0540aeb8c9da4c34662ecb/write.lock -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/workspaceState.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.core/workspaceState.ser -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0.log: -------------------------------------------------------------------------------- 1 | 2018-05-02 15:17:01,463 [Worker-4] INFO c.g.t.t.d.PublishedGradleVersions - Gradle version information cache is up-to-date. Trying to read. 2 | 2018-05-02 15:22:04,293 [Worker-0] INFO c.g.t.t.d.PublishedGradleVersions - Gradle version information cache is up-to-date. Trying to read. 3 | 2018-05-03 09:27:33,016 [Worker-1] INFO c.g.t.t.d.PublishedGradleVersions - Gradle version information cache is out-of-date. Trying to update. 4 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties: -------------------------------------------------------------------------------- 1 | #Cached timestamps 2 | #Thu May 03 09:40:30 CST 2018 3 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.rse.core/.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.rse.core/.log -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.rse.core/initializerMarks/org.eclipse.rse.internal.core.RSELocalConnectionInitializer.mark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.rse.core/initializerMarks/org.eclipse.rse.internal.core.RSELocalConnectionInitializer.mark -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-au5mkug_32623/node.properties: -------------------------------------------------------------------------------- 1 | # RSE DOM Node 2 | 00-name=DESKTOP-AU5MKUG 3 | 01-type=Profile 4 | 03-attr.defaultPrivate=true 5 | 03-attr.isActive=true 6 | 05-ref.00000=FP.local.files_0 7 | 05-ref.00001=H.local_16 8 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.rse.ui/.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.eclipse.rse.ui/.log -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.ui.intro/introstate: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.ui/dialog_settings.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.eclipse.wst.jsdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.aop.core/.state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.edu.emory.mathcs.backport-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.edu.emory.mathcs.backport-3.1.0.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.net.sf.cglib-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.net.sf.cglib-2.1.3.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.org.aopalliance-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.org.aopalliance-1.0.0.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.org.apache.log4j-1.2.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.org.apache.log4j-1.2.15.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.org.objectweb.asm-2.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.org.objectweb.asm-2.2.3.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.slf4j.api-1.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.slf4j.api-1.5.6.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.slf4j.log4j-1.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.slf4j.log4j-1.5.6.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.slf4j.org.apache.commons.logging-1.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/com.springsource.slf4j.org.apache.commons.logging-1.5.6.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.eclipse.osgi-3.5.1.R35x_v20091005.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.eclipse.osgi-3.5.1.R35x_v20091005.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.aop-3.0.1.RELEASE-A.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.aop-3.0.1.RELEASE-A.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.beans-3.0.1.RELEASE-A.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.beans-3.0.1.RELEASE-A.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.context-3.0.1.RELEASE-A.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.context-3.0.1.RELEASE-A.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.context.support-3.0.1.RELEASE-A.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.context.support-3.0.1.RELEASE-A.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.core-3.0.1.RELEASE-A.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.core-3.0.1.RELEASE-A.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.osgi.core-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.osgi.core-1.2.1.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.osgi.extender-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.osgi.extender-1.2.1.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.osgi.extensions.annotation-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.osgi.extensions.annotation-1.2.1.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.osgi.io-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot/.metadata/.plugins/org.springframework.ide.eclipse.osgi.targetdefinition/3.9.3.201803200843-RELEASE/target/org.springframework.osgi.io-1.2.1.jar -------------------------------------------------------------------------------- /SpringBoot/springboot/.metadata/version.ini: -------------------------------------------------------------------------------- 1 | #Thu May 03 09:27:07 CST 2018 2 | org.eclipse.core.runtime=2 3 | org.eclipse.platform=4.7.1.v20171009-0410 4 | -------------------------------------------------------------------------------- /SpringBoot/springboot/RemoteSystemsTempFiles/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | RemoteSystemsTempFiles 4 | 5 | 6 | 7 | 8 | 9 | 10 | org.eclipse.rse.ui.remoteSystemsTempNature 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot05-mysql/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot/springboot05-mysql/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot05-mysql/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot/springboot05-mysql/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot/springboot05-mysql/src/main/java/com/wdjr/springboot/Springboot05MysqlApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class Springboot05MysqlApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(Springboot05MysqlApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot/springboot05-mysql/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot/springboot05-mysql/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot/springboot05-mysql/src/test/java/com/wdjr/springboot/Springboot05MysqlApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class Springboot05MysqlApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot2/amqp/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot2/amqp/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/amqp/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot2/amqp/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot2/amqp/src/main/java/com/wdjr/amqp/AmqpApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.amqp; 2 | 3 | import org.springframework.amqp.rabbit.annotation.EnableRabbit; 4 | import org.springframework.boot.SpringApplication; 5 | import org.springframework.boot.autoconfigure.SpringBootApplication; 6 | 7 | @EnableRabbit //开启基于注解的rabbitmq 8 | @SpringBootApplication 9 | public class AmqpApplication { 10 | 11 | public static void main(String[] args) { 12 | SpringApplication.run(AmqpApplication.class, args); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SpringBoot2/amqp/src/main/java/com/wdjr/amqp/config/MyAMQPConfig.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.amqp.config; 2 | 3 | 4 | import org.springframework.amqp.support.converter.Jackson2JsonMessageConverter; 5 | import org.springframework.amqp.support.converter.MessageConverter; 6 | import org.springframework.context.annotation.Bean; 7 | import org.springframework.context.annotation.Configuration; 8 | 9 | @Configuration 10 | public class MyAMQPConfig { 11 | 12 | @Bean 13 | public MessageConverter messageConverter(){ 14 | return new Jackson2JsonMessageConverter(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot2/amqp/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/amqp/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot2/amqp/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | rabbitmq: 3 | host: 192.168.179.131 4 | port: 5672 5 | username: guest 6 | password: guest 7 | server: 8 | port: 9000 -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-03-elastic/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-03-elastic/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/spring-boot-03-elastic/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-03-elastic/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-03-elastic/data/elasticsearch/nodes/0/_state/global-1.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/spring-boot-03-elastic/data/elasticsearch/nodes/0/_state/global-1.st -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-03-elastic/data/elasticsearch/nodes/0/node.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/spring-boot-03-elastic/data/elasticsearch/nodes/0/node.lock -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-03-elastic/src/main/java/com/wdjr/springboot/SpringBoot03ElasticApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot03ElasticApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot03ElasticApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-03-elastic/src/main/java/com/wdjr/springboot/repositry/BookRepositry.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.repositry; 2 | 3 | import com.wdjr.springboot.bean.Book; 4 | import org.springframework.data.elasticsearch.repository.ElasticsearchRepository; 5 | 6 | import java.util.List; 7 | 8 | public interface BookRepositry extends ElasticsearchRepository { 9 | 10 | public List findByBookNameLike(String bookName); 11 | 12 | 13 | } 14 | -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-03-elastic/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/spring-boot-03-elastic/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-03-elastic/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | elasticsearch: 3 | jest: 4 | uris: http://192.168.179.131:9200 5 | data: 6 | elasticsearch: 7 | cluster-name: elasticsearch 8 | cluster-nodes: 192.168.179.131:9301 9 | server: 10 | port: 9000 11 | 12 | -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-07-config/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-07-config/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/spring-boot-07-config/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-07-config/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-07-config/src/main/java/com/wdjr/springboot/SpringBoot07ConfigApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBoot07ConfigApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBoot07ConfigApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-07-config/src/main/java/com/wdjr/springboot/listener/HelloApplicationRunner.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.listener; 2 | 3 | import org.springframework.boot.ApplicationArguments; 4 | import org.springframework.boot.ApplicationRunner; 5 | import org.springframework.stereotype.Component; 6 | 7 | 8 | @Component 9 | public class HelloApplicationRunner implements ApplicationRunner { 10 | @Override 11 | public void run(ApplicationArguments args) throws Exception { 12 | System.out.println("ApplicationRunner.....run...."); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-07-config/src/main/java/com/wdjr/springboot/listener/HelloCommandLineRunner.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot.listener; 2 | 3 | import org.springframework.boot.CommandLineRunner; 4 | import org.springframework.stereotype.Component; 5 | 6 | import java.util.Arrays; 7 | 8 | @Component 9 | public class HelloCommandLineRunner implements CommandLineRunner { 10 | @Override 11 | public void run(String... args) throws Exception { 12 | System.out.println("CommandLineRunner......run....."+Arrays.asList(args)); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-07-config/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- 1 | # Initializers 2 | org.springframework.context.ApplicationContextInitializer=\ 3 | com.wdjr.springboot.listener.HelloApplicationContextInitializer 4 | 5 | org.springframework.boot.SpringApplicationRunListener=\ 6 | com.wdjr.springboot.listener.HelloSpringApplicationRunListener 7 | -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-07-config/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/spring-boot-07-config/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot2/spring-boot-07-config/src/test/java/com/wdjr/springboot/SpringBoot07ConfigApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.springboot; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class SpringBoot07ConfigApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-01-cache/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot2/springboot-01-cache/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/springboot-01-cache/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot2/springboot-01-cache/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-01-cache/src/main/java/com/wdjr/cache/mapper/DepartmentMapper.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.cache.mapper; 2 | 3 | public interface DepartmentMapper { 4 | } 5 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-01-cache/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.datasource.driver-class-name=com.mysql.jdbc.Driver 2 | spring.datasource.url=jdbc:mysql://192.168.179.131:3306/mybatis01 3 | spring.datasource.username=root 4 | spring.datasource.password=Welcome_1 5 | mybatis.configuration.map-underscore-to-camel-case=true 6 | server.port=9000 7 | debug=true 8 | spring.redis.host=192.168.179.131 -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__com_alibaba_dubbo_2_5_10.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__com_google_guava_guava_16_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__io_netty_netty_3_10_5_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__jline_jline_0_9_94.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__log4j_log4j_1_2_14.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__org_objenesis_objenesis_2_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__org_ow2_asm_asm_5_0_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/libraries/Maven__org_yaml_snakeyaml_1_17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/comsumer-user/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/comsumer-user/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/springboot-06-dubbo/comsumer-user/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/comsumer-user/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/comsumer-user/src/main/java/com/wdjr/ticket/service/TicketService.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.ticket.service; 2 | 3 | public interface TicketService { 4 | public String getTicket(); 5 | } 6 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/comsumer-user/src/main/java/com/wdjr/user/ComsumerUserApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.user; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class ComsumerUserApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(ComsumerUserApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/comsumer-user/src/main/java/com/wdjr/user/service/UserService.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.user.service; 2 | 3 | 4 | import com.alibaba.dubbo.config.annotation.Reference; 5 | import com.wdjr.ticket.service.TicketService; 6 | 7 | import org.springframework.stereotype.Service; 8 | 9 | @Service 10 | public class UserService { 11 | 12 | @Reference 13 | TicketService ticketService; 14 | 15 | public void hello(){ 16 | String ticket = ticketService.getTicket(); 17 | System.out.println("您已经成功买票:"+ticket); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/comsumer-user/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/springboot-06-dubbo/comsumer-user/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/comsumer-user/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | dubbo: 2 | application: 3 | name: comsumer-user 4 | registry: 5 | address: zookeeper://192.168.179.131:2111 -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/provider-ticket/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | .sts4-cache 12 | 13 | ### IntelliJ IDEA ### 14 | .idea 15 | *.iws 16 | *.iml 17 | *.ipr 18 | 19 | ### NetBeans ### 20 | /nbproject/private/ 21 | /build/ 22 | /nbbuild/ 23 | /dist/ 24 | /nbdist/ 25 | /.nb-gradle/ -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/provider-ticket/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/springboot-06-dubbo/provider-ticket/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/provider-ticket/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/provider-ticket/src/main/java/com/wdjr/ticket/ProviderTicketApplication.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.ticket; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class ProviderTicketApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(ProviderTicketApplication.class, args); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/provider-ticket/src/main/java/com/wdjr/ticket/service/TicketService.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.ticket.service; 2 | 3 | public interface TicketService { 4 | public String getTicket(); 5 | } 6 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/provider-ticket/src/main/java/com/wdjr/ticket/service/TicketServiceImp.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.ticket.service; 2 | import com.alibaba.dubbo.config.annotation.Service; 3 | import org.springframework.stereotype.Component; 4 | 5 | @Component 6 | @Service 7 | public class TicketServiceImp implements TicketService { 8 | @Override 9 | public String getTicket() { 10 | return "《厉害了,我的国》"; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/provider-ticket/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot2/springboot-06-dubbo/provider-ticket/src/main/resources/application.properties -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/provider-ticket/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | dubbo: 2 | application: 3 | name: provider-ticket 4 | registry: 5 | address: zookeeper://192.168.179.131:2111 6 | scan: 7 | base-packages: com.wdjr.ticket.service 8 | server: 9 | port: 9001 10 | 11 | -------------------------------------------------------------------------------- /SpringBoot2/springboot-06-dubbo/provider-ticket/src/test/java/com/wdjr/ticket/ProviderTicketApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.wdjr.ticket; 2 | 3 | import org.junit.Test; 4 | import org.junit.runner.RunWith; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | import org.springframework.test.context.junit4.SpringRunner; 7 | 8 | @RunWith(SpringRunner.class) 9 | @SpringBootTest 10 | public class ProviderTicketApplicationTests { 11 | 12 | @Test 13 | public void contextLoads() { 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBoot入门简介.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/SpringBoot入门简介.pdf -------------------------------------------------------------------------------- /images/1.configuration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/1.configuration.jpg -------------------------------------------------------------------------------- /images/10.slf4jandlogback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/10.slf4jandlogback.jpg -------------------------------------------------------------------------------- /images/11.log4j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/11.log4j.jpg -------------------------------------------------------------------------------- /images/12.jquery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/12.jquery.jpg -------------------------------------------------------------------------------- /images/13.static.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/13.static.jpg -------------------------------------------------------------------------------- /images/14.static-css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/14.static-css.jpg -------------------------------------------------------------------------------- /images/15.thtmeleaf-th01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/15.thtmeleaf-th01.jpg -------------------------------------------------------------------------------- /images/15.thtmeleaf-th02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/15.thtmeleaf-th02.jpg -------------------------------------------------------------------------------- /images/15.thtmeleaf-th03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/15.thtmeleaf-th03.jpg -------------------------------------------------------------------------------- /images/16.national.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/16.national.jpg -------------------------------------------------------------------------------- /images/17.encoding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/17.encoding.jpg -------------------------------------------------------------------------------- /images/18.accept-language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/18.accept-language.jpg -------------------------------------------------------------------------------- /images/19.table list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/19.table list.jpg -------------------------------------------------------------------------------- /images/2.factories.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/2.factories.jpg -------------------------------------------------------------------------------- /images/20.error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/20.error.jpg -------------------------------------------------------------------------------- /images/21.error-static.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/21.error-static.jpg -------------------------------------------------------------------------------- /images/22.4xxhtml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/22.4xxhtml.jpg -------------------------------------------------------------------------------- /images/23.server-config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/23.server-config.jpg -------------------------------------------------------------------------------- /images/23.tomcat emd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/23.tomcat emd.jpg -------------------------------------------------------------------------------- /images/24.EmdServletFactory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/24.EmdServletFactory.jpg -------------------------------------------------------------------------------- /images/25.EmdServletContainer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/25.EmdServletContainer.jpg -------------------------------------------------------------------------------- /images/26.tomcat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/26.tomcat1.jpg -------------------------------------------------------------------------------- /images/27.tomcat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/27.tomcat2.jpg -------------------------------------------------------------------------------- /images/28.tomcat3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/28.tomcat3.jpg -------------------------------------------------------------------------------- /images/3.Spring Intializer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/3.Spring Intializer.jpg -------------------------------------------------------------------------------- /images/30.tomcat4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/30.tomcat4.jpg -------------------------------------------------------------------------------- /images/31.tomcat5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/31.tomcat5.jpg -------------------------------------------------------------------------------- /images/32.tomcat6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/32.tomcat6.jpg -------------------------------------------------------------------------------- /images/33.tomcat7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/33.tomcat7.jpg -------------------------------------------------------------------------------- /images/34.tomcat8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/34.tomcat8.jpg -------------------------------------------------------------------------------- /images/35.tomcat9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/35.tomcat9.jpg -------------------------------------------------------------------------------- /images/36.tomcat10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/36.tomcat10.jpg -------------------------------------------------------------------------------- /images/37.tomcat11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/37.tomcat11.jpg -------------------------------------------------------------------------------- /images/38.tomcat12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/38.tomcat12.jpg -------------------------------------------------------------------------------- /images/39.tomcat13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/39.tomcat13.jpg -------------------------------------------------------------------------------- /images/4.MyAppConfig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/4.MyAppConfig.jpg -------------------------------------------------------------------------------- /images/40.demo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/40.demo1.jpg -------------------------------------------------------------------------------- /images/41.demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/41.demo2.jpg -------------------------------------------------------------------------------- /images/42.servletContainerInit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/42.servletContainerInit.jpg -------------------------------------------------------------------------------- /images/43.webapplication.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/43.webapplication.jpg -------------------------------------------------------------------------------- /images/44.docker1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/44.docker1.jpg -------------------------------------------------------------------------------- /images/45.schema-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/45.schema-all.jpg -------------------------------------------------------------------------------- /images/46.department.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/46.department.jpg -------------------------------------------------------------------------------- /images/47.hello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/47.hello.jpg -------------------------------------------------------------------------------- /images/48.druid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/48.druid.jpg -------------------------------------------------------------------------------- /images/49.mybatis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/49.mybatis.jpg -------------------------------------------------------------------------------- /images/5.comandLine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/5.comandLine.jpg -------------------------------------------------------------------------------- /images/50.mybatisxml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/50.mybatisxml.jpg -------------------------------------------------------------------------------- /images/51.JPA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/51.JPA.jpg -------------------------------------------------------------------------------- /images/52.applicationCotextInitializer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/52.applicationCotextInitializer.jpg -------------------------------------------------------------------------------- /images/53.Listener.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/53.Listener.jpg -------------------------------------------------------------------------------- /images/54.listener2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/54.listener2.jpg -------------------------------------------------------------------------------- /images/55.autoconfig-starter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/55.autoconfig-starter.jpg -------------------------------------------------------------------------------- /images/56.starter01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/56.starter01.jpg -------------------------------------------------------------------------------- /images/57.starter02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/57.starter02.jpg -------------------------------------------------------------------------------- /images/58.starter03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/58.starter03.jpg -------------------------------------------------------------------------------- /images/59.starter04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/59.starter04.jpg -------------------------------------------------------------------------------- /images/6.vmCommandLine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/6.vmCommandLine.jpg -------------------------------------------------------------------------------- /images/60.starter05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/60.starter05.jpg -------------------------------------------------------------------------------- /images/61.starter06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/61.starter06.jpg -------------------------------------------------------------------------------- /images/62.starter07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/62.starter07.jpg -------------------------------------------------------------------------------- /images/63.starter08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/63.starter08.jpg -------------------------------------------------------------------------------- /images/64.starter09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/64.starter09.jpg -------------------------------------------------------------------------------- /images/65.starter10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/65.starter10.jpg -------------------------------------------------------------------------------- /images/66.starter-build01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/66.starter-build01.jpg -------------------------------------------------------------------------------- /images/67.starter-build02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/67.starter-build02.jpg -------------------------------------------------------------------------------- /images/68.starter-build03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/68.starter-build03.jpg -------------------------------------------------------------------------------- /images/69.starter-build04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/69.starter-build04.jpg -------------------------------------------------------------------------------- /images/7.priority.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/7.priority.jpg -------------------------------------------------------------------------------- /images/70.starter-build05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/70.starter-build05.jpg -------------------------------------------------------------------------------- /images/8.slf4j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/8.slf4j.jpg -------------------------------------------------------------------------------- /images/9.IDEAdependencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images/9.IDEAdependencies.jpg -------------------------------------------------------------------------------- /images2/01.postman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/01.postman.jpg -------------------------------------------------------------------------------- /images2/02.postmanget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/02.postmanget.jpg -------------------------------------------------------------------------------- /images2/03.dubbo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/03.dubbo.jpg -------------------------------------------------------------------------------- /images2/03.dubbo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/03.dubbo2.jpg -------------------------------------------------------------------------------- /images2/04.dubbo+zk3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/04.dubbo+zk3.jpg -------------------------------------------------------------------------------- /images2/05.springCloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/05.springCloud.jpg -------------------------------------------------------------------------------- /images2/06.EurekaServer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/06.EurekaServer.jpg -------------------------------------------------------------------------------- /images2/07.provider-ticket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/07.provider-ticket.jpg -------------------------------------------------------------------------------- /images2/07.provider-ticket02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/07.provider-ticket02.jpg -------------------------------------------------------------------------------- /images2/08.consumer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/08.consumer.jpg -------------------------------------------------------------------------------- /images2/09.同步.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/09.同步.png -------------------------------------------------------------------------------- /images2/10.异步.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/10.异步.png -------------------------------------------------------------------------------- /images2/11.消息.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/11.消息.png -------------------------------------------------------------------------------- /images2/12.应用解耦.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/12.应用解耦.jpg -------------------------------------------------------------------------------- /images2/13.RabbitMQ结构.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/13.RabbitMQ结构.png -------------------------------------------------------------------------------- /images2/13.rabbitmq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/13.rabbitmq.jpg -------------------------------------------------------------------------------- /images2/14.RabbitMQDirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/14.RabbitMQDirect.png -------------------------------------------------------------------------------- /images2/14.RabbitMQfaout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/14.RabbitMQfaout.png -------------------------------------------------------------------------------- /images2/14.RabbitMQtopic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/14.RabbitMQtopic.png -------------------------------------------------------------------------------- /images2/15.exchanges.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/15.exchanges.jpg -------------------------------------------------------------------------------- /images2/16.queues.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/16.queues.jpg -------------------------------------------------------------------------------- /images2/17.bind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/17.bind.jpg -------------------------------------------------------------------------------- /images2/18,bindfanout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/18,bindfanout.jpg -------------------------------------------------------------------------------- /images2/19,bind_topic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/19,bind_topic.jpg -------------------------------------------------------------------------------- /images2/20.publish-direct.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/20.publish-direct.jpg -------------------------------------------------------------------------------- /images2/21.queue-direct.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/21.queue-direct.jpg -------------------------------------------------------------------------------- /images2/22.msg-direct.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/22.msg-direct.jpg -------------------------------------------------------------------------------- /images2/23.pub-fanout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/23.pub-fanout.jpg -------------------------------------------------------------------------------- /images2/24.queue-fanout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/24.queue-fanout.jpg -------------------------------------------------------------------------------- /images2/25.msg-fanout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/25.msg-fanout.jpg -------------------------------------------------------------------------------- /images2/26.pub-topic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/26.pub-topic.jpg -------------------------------------------------------------------------------- /images2/27.que-topic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/27.que-topic.jpg -------------------------------------------------------------------------------- /images2/28.msg-topic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/28.msg-topic.jpg -------------------------------------------------------------------------------- /images2/29.dir-idea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/29.dir-idea.jpg -------------------------------------------------------------------------------- /images2/30.dir-idea-json.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/30.dir-idea-json.jpg -------------------------------------------------------------------------------- /images2/31.createAMQP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/31.createAMQP.jpg -------------------------------------------------------------------------------- /images2/32.createQueue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/32.createQueue.jpg -------------------------------------------------------------------------------- /images2/33.createBinding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/33.createBinding.jpg -------------------------------------------------------------------------------- /images2/34.elastic-head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/34.elastic-head.jpg -------------------------------------------------------------------------------- /images2/35.cache.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/35.cache.jpg -------------------------------------------------------------------------------- /images2/35.cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/35.cache.png -------------------------------------------------------------------------------- /images2/36.importcache.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/36.importcache.jpg -------------------------------------------------------------------------------- /images2/37.redis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/37.redis.jpg -------------------------------------------------------------------------------- /images2/38.redis02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/38.redis02.jpg -------------------------------------------------------------------------------- /images2/38.redis03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/38.redis03.jpg -------------------------------------------------------------------------------- /images2/39.redis04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxy-go/SpringBoot/af8995e8f21ecdb6a94ce0fafbd8eededd9f9988/images2/39.redis04.jpg --------------------------------------------------------------------------------