├── .gitignore ├── LICENSE ├── README.md ├── eureka-server-ui ├── .gitignore ├── pom.xml └── src │ └── main │ └── resources │ ├── META-INF │ ├── MANIFEST.MF │ ├── maven │ │ └── org.springframework.cloud │ │ │ └── spring-cloud-netflix-eureka-server │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── spring-configuration-metadata.json │ └── spring.factories │ ├── eureka │ └── server.properties │ ├── static │ └── eureka │ │ ├── css │ │ └── wro.css │ │ ├── fonts │ │ ├── montserrat-webfont.eot │ │ ├── montserrat-webfont.svg │ │ ├── montserrat-webfont.ttf │ │ ├── montserrat-webfont.woff │ │ ├── varela_round-webfont.eot │ │ ├── varela_round-webfont.svg │ │ ├── varela_round-webfont.ttf │ │ └── varela_round-webfont.woff │ │ ├── images │ │ ├── 404-icon.png │ │ ├── homepage-bg.jpg │ │ ├── platform-bg.png │ │ ├── platform-spring-xd.png │ │ ├── spring-logo-eureka-mobile.png │ │ └── spring-logo-eureka.png │ │ └── js │ │ └── wro.js │ └── templates │ └── eureka │ ├── header.ftl │ ├── lastn.ftl │ ├── navbar.ftl │ └── status.ftl ├── eureka-server.log ├── eureka-server ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── cn │ │ └── springcloud │ │ └── eureka │ │ └── EurekaServerApplication.java │ └── resources │ └── application.properties └── pom.xml /.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 | .mvn 19 | 20 | ### NetBeans ### 21 | /nbproject/private/ 22 | /build/ 23 | /nbbuild/ 24 | /dist/ 25 | /nbdist/ 26 | /.nb-gradle/ 27 | 28 | eureka-server.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ## spring-cloud-eureka 3 | http://eureka.springcloud.cn/ 4 | 5 | ## 定制eureka-UI 6 | 定制eureka-UI扩展主要就是根据内置的页面进行修改,两种方法如下: 7 | * 1.copy了一份eureka-Server的源码,然后改了下页面-蠢笨 8 | * 2.只需要单独新建一个只包含页面部分的工程修改就ok-推荐 9 | 10 | -------------------------------------------------------------------------------- /eureka-server-ui/.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/ -------------------------------------------------------------------------------- /eureka-server-ui/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | eureka-server-ui 7 | jar 8 | 9 | eureka-server-ui 10 | 11 | 12 | cn.springcloud.eureka 13 | spring-cloud-eureka 14 | 1.0.0 15 | 16 | 17 | 18 | 19 | org.springframework.boot 20 | spring-boot-starter-freemarker 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: Spring Cloud Netflix Eureka Server 3 | Implementation-Version: 2.0.0.RC1 4 | Archiver-Version: Plexus Archiver 5 | Built-By: jenkins 6 | Implementation-Vendor-Id: org.springframework.cloud 7 | Created-By: Apache Maven 3.5.0 8 | Build-Jdk: 1.8.0_161 9 | Implementation-URL: https://projects.spring.io/spring-cloud/ 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/META-INF/maven/org.springframework.cloud/spring-cloud-netflix-eureka-server/pom.properties: -------------------------------------------------------------------------------- 1 | #Created by Apache Maven 3.5.0 2 | #Fri Apr 20 19:54:57 UTC 2018 3 | version=2.0.0.RC1 4 | groupId=org.springframework.cloud 5 | artifactId=spring-cloud-netflix-eureka-server 6 | -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/META-INF/maven/org.springframework.cloud/spring-cloud-netflix-eureka-server/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | org.springframework.cloud 7 | spring-cloud-netflix 8 | 2.0.0.RC1 9 | .. 10 | 11 | spring-cloud-netflix-eureka-server 12 | Spring Cloud Netflix Eureka Server 13 | https://projects.spring.io/spring-cloud/ 14 | 15 | ${basedir}/.. 16 | 1.7.9 17 | 18 | 19 | 20 | org.springframework.boot 21 | spring-boot-configuration-processor 22 | true 23 | 24 | 25 | org.springframework.boot 26 | spring-boot-starter-web 27 | 28 | 29 | org.springframework.boot 30 | spring-boot-starter-actuator 31 | 32 | 33 | org.springframework.boot 34 | spring-boot-starter-freemarker 35 | 36 | 37 | org.springframework.cloud 38 | spring-cloud-commons 39 | 40 | 41 | org.springframework.cloud 42 | spring-cloud-context 43 | true 44 | 45 | 46 | org.springframework.cloud 47 | spring-cloud-netflix-core 48 | 49 | 50 | org.springframework.cloud 51 | spring-cloud-netflix-eureka-client 52 | 53 | 54 | com.netflix.eureka 55 | eureka-client 56 | 57 | 58 | com.sun.jersey 59 | jersey-servlet 60 | 61 | 62 | com.sun.jersey 63 | jersey-server 64 | 65 | 66 | com.netflix.eureka 67 | eureka-core 68 | 69 | 70 | blitz4j 71 | com.netflix.blitz4j 72 | 73 | 74 | 75 | 76 | com.netflix.archaius 77 | archaius-core 78 | 79 | 80 | 81 | commons-configuration 82 | commons-configuration 83 | true 84 | 85 | 86 | 87 | javax.inject 88 | javax.inject 89 | 90 | 91 | 92 | com.fasterxml.jackson.dataformat 93 | jackson-dataformat-xml 94 | 95 | 96 | com.thoughtworks.xstream 97 | xstream 98 | 99 | 100 | org.projectlombok 101 | lombok 102 | 103 | compile 104 | true 105 | 106 | 107 | org.springframework.restdocs 108 | spring-restdocs-restassured 109 | test 110 | 111 | 112 | org.springframework.boot 113 | spring-boot-starter-test 114 | test 115 | 116 | 117 | org.springframework.cloud 118 | spring-cloud-contract-wiremock 119 | test 120 | 121 | 122 | org.springframework.security 123 | spring-security-rsa 124 | test 125 | 126 | 127 | 128 | 129 | 130 | ${project.basedir}/src/main/resources 131 | 132 | 133 | ${project.build.directory}/generated-resources 134 | 135 | 136 | 137 | 138 | maven-resources-plugin 139 | 140 | 141 | 143 | copy-resources 144 | validate 145 | 146 | copy-resources 147 | 148 | 149 | ${basedir}/target/wro 150 | 151 | 152 | src/main/wro 153 | true 154 | 155 | 156 | 157 | 158 | 159 | copy-docs 160 | prepare-package 161 | 162 | copy-resources 163 | 164 | 165 | 166 | ${project.build.outputDirectory}/static/docs 167 | 168 | 169 | 170 | 171 | ${project.build.directory}/generated-docs 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | ro.isdc.wro4j 181 | wro4j-maven-plugin 182 | ${wro4j.version} 183 | 184 | 185 | generate-resources 186 | 187 | run 188 | 189 | 190 | 191 | 192 | ro.isdc.wro.maven.plugin.manager.factory.ConfigurableWroManagerFactory 193 | ${project.build.directory}/generated-resources/static/eureka/css 194 | ${project.build.directory}/generated-resources/static/eureka/js 195 | ${project.build.directory}/wro/wro.xml 196 | ${basedir}/src/main/wro/wro.properties 197 | ${basedir}/src/main/wro 198 | 199 | 200 | 201 | org.webjars 202 | jquery 203 | 2.1.1 204 | 205 | 206 | org.webjars 207 | bootstrap 208 | 3.2.0 209 | 210 | 211 | 212 | 213 | org.asciidoctor 214 | asciidoctor-maven-plugin 215 | 216 | 217 | generate-docs 218 | prepare-package 219 | 220 | process-asciidoc 221 | 222 | 223 | html 224 | book 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/META-INF/spring-configuration-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "hints": [], 3 | "groups": [ 4 | { 5 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaDashboardProperties", 6 | "name": "eureka.dashboard", 7 | "type": "org.springframework.cloud.netflix.eureka.server.EurekaDashboardProperties" 8 | }, 9 | { 10 | "sourceType": "org.springframework.cloud.netflix.eureka.server.InstanceRegistryProperties", 11 | "name": "eureka.instance.registry", 12 | "type": "org.springframework.cloud.netflix.eureka.server.InstanceRegistryProperties" 13 | }, 14 | { 15 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 16 | "name": "eureka.server", 17 | "type": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean" 18 | } 19 | ], 20 | "properties": [ 21 | { 22 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaDashboardProperties", 23 | "defaultValue": true, 24 | "name": "eureka.dashboard.enabled", 25 | "description": "Flag to enable the Eureka dashboard. Default true.", 26 | "type": "java.lang.Boolean" 27 | }, 28 | { 29 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaDashboardProperties", 30 | "defaultValue": "\/", 31 | "name": "eureka.dashboard.path", 32 | "description": "The path to the Eureka dashboard (relative to the servlet path). Defaults to \"\/\".", 33 | "type": "java.lang.String" 34 | }, 35 | { 36 | "sourceType": "org.springframework.cloud.netflix.eureka.server.InstanceRegistryProperties", 37 | "defaultValue": 1, 38 | "name": "eureka.instance.registry.default-open-for-traffic-count", 39 | "description": "Value used in determining when leases are cancelled, default to 1 for standalone.\n Should be set to 0 for peer replicated eurekas", 40 | "type": "java.lang.Integer" 41 | }, 42 | { 43 | "sourceType": "org.springframework.cloud.netflix.eureka.server.InstanceRegistryProperties", 44 | "defaultValue": 1, 45 | "name": "eureka.instance.registry.expected-number-of-renews-per-min", 46 | "type": "java.lang.Integer" 47 | }, 48 | { 49 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 50 | "defaultValue": 0, 51 | "name": "eureka.server.a-s-g-cache-expiry-timeout-ms", 52 | "type": "java.lang.Long" 53 | }, 54 | { 55 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 56 | "defaultValue": 300, 57 | "name": "eureka.server.a-s-g-query-timeout-ms", 58 | "type": "java.lang.Integer" 59 | }, 60 | { 61 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 62 | "defaultValue": 0, 63 | "name": "eureka.server.a-s-g-update-interval-ms", 64 | "type": "java.lang.Long" 65 | }, 66 | { 67 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 68 | "name": "eureka.server.a-w-s-access-id", 69 | "type": "java.lang.String" 70 | }, 71 | { 72 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 73 | "name": "eureka.server.a-w-s-secret-key", 74 | "type": "java.lang.String" 75 | }, 76 | { 77 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 78 | "defaultValue": false, 79 | "name": "eureka.server.batch-replication", 80 | "type": "java.lang.Boolean" 81 | }, 82 | { 83 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 84 | "name": "eureka.server.binding-strategy", 85 | "type": "com.netflix.eureka.aws.AwsBindingStrategy" 86 | }, 87 | { 88 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 89 | "defaultValue": 0, 90 | "name": "eureka.server.delta-retention-timer-interval-in-ms", 91 | "type": "java.lang.Long" 92 | }, 93 | { 94 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 95 | "defaultValue": false, 96 | "name": "eureka.server.disable-delta", 97 | "type": "java.lang.Boolean" 98 | }, 99 | { 100 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 101 | "defaultValue": false, 102 | "name": "eureka.server.disable-delta-for-remote-regions", 103 | "type": "java.lang.Boolean" 104 | }, 105 | { 106 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 107 | "defaultValue": false, 108 | "name": "eureka.server.disable-transparent-fallback-to-other-region", 109 | "type": "java.lang.Boolean" 110 | }, 111 | { 112 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 113 | "defaultValue": 3, 114 | "name": "eureka.server.e-i-p-bind-rebind-retries", 115 | "type": "java.lang.Integer" 116 | }, 117 | { 118 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 119 | "defaultValue": 0, 120 | "name": "eureka.server.e-i-p-binding-retry-interval-ms", 121 | "type": "java.lang.Integer" 122 | }, 123 | { 124 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 125 | "defaultValue": 0, 126 | "name": "eureka.server.e-i-p-binding-retry-interval-ms-when-unbound", 127 | "type": "java.lang.Integer" 128 | }, 129 | { 130 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 131 | "defaultValue": false, 132 | "name": "eureka.server.enable-replicated-request-compression", 133 | "type": "java.lang.Boolean" 134 | }, 135 | { 136 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 137 | "defaultValue": true, 138 | "name": "eureka.server.enable-self-preservation", 139 | "type": "java.lang.Boolean" 140 | }, 141 | { 142 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 143 | "defaultValue": 0, 144 | "name": "eureka.server.eviction-interval-timer-in-ms", 145 | "type": "java.lang.Long" 146 | }, 147 | { 148 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 149 | "defaultValue": true, 150 | "name": "eureka.server.g-zip-content-from-remote-region", 151 | "type": "java.lang.Boolean" 152 | }, 153 | { 154 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 155 | "name": "eureka.server.json-codec-name", 156 | "type": "java.lang.String" 157 | }, 158 | { 159 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 160 | "defaultValue": "ListAutoScalingGroups", 161 | "name": "eureka.server.list-auto-scaling-groups-role-name", 162 | "type": "java.lang.String" 163 | }, 164 | { 165 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 166 | "defaultValue": true, 167 | "name": "eureka.server.log-identity-headers", 168 | "type": "java.lang.Boolean" 169 | }, 170 | { 171 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 172 | "defaultValue": 10000, 173 | "name": "eureka.server.max-elements-in-peer-replication-pool", 174 | "type": "java.lang.Integer" 175 | }, 176 | { 177 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 178 | "defaultValue": 10000, 179 | "name": "eureka.server.max-elements-in-status-replication-pool", 180 | "type": "java.lang.Integer" 181 | }, 182 | { 183 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 184 | "defaultValue": 15, 185 | "name": "eureka.server.max-idle-thread-age-in-minutes-for-peer-replication", 186 | "type": "java.lang.Long" 187 | }, 188 | { 189 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 190 | "defaultValue": 10, 191 | "name": "eureka.server.max-idle-thread-in-minutes-age-for-status-replication", 192 | "type": "java.lang.Long" 193 | }, 194 | { 195 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 196 | "defaultValue": 20, 197 | "name": "eureka.server.max-threads-for-peer-replication", 198 | "type": "java.lang.Integer" 199 | }, 200 | { 201 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 202 | "defaultValue": 1, 203 | "name": "eureka.server.max-threads-for-status-replication", 204 | "type": "java.lang.Integer" 205 | }, 206 | { 207 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 208 | "defaultValue": 30000, 209 | "name": "eureka.server.max-time-for-replication", 210 | "type": "java.lang.Integer" 211 | }, 212 | { 213 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 214 | "defaultValue": -1, 215 | "name": "eureka.server.min-available-instances-for-peer-replication", 216 | "type": "java.lang.Integer" 217 | }, 218 | { 219 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 220 | "defaultValue": 5, 221 | "name": "eureka.server.min-threads-for-peer-replication", 222 | "type": "java.lang.Integer" 223 | }, 224 | { 225 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 226 | "defaultValue": 1, 227 | "name": "eureka.server.min-threads-for-status-replication", 228 | "type": "java.lang.Integer" 229 | }, 230 | { 231 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 232 | "defaultValue": 5, 233 | "name": "eureka.server.number-of-replication-retries", 234 | "type": "java.lang.Integer" 235 | }, 236 | { 237 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 238 | "defaultValue": 0, 239 | "name": "eureka.server.peer-eureka-nodes-update-interval-ms", 240 | "type": "java.lang.Integer" 241 | }, 242 | { 243 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 244 | "defaultValue": 0, 245 | "name": "eureka.server.peer-eureka-status-refresh-time-interval-ms", 246 | "type": "java.lang.Integer" 247 | }, 248 | { 249 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 250 | "defaultValue": 200, 251 | "name": "eureka.server.peer-node-connect-timeout-ms", 252 | "type": "java.lang.Integer" 253 | }, 254 | { 255 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 256 | "defaultValue": 30, 257 | "name": "eureka.server.peer-node-connection-idle-timeout-seconds", 258 | "type": "java.lang.Integer" 259 | }, 260 | { 261 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 262 | "defaultValue": 200, 263 | "name": "eureka.server.peer-node-read-timeout-ms", 264 | "type": "java.lang.Integer" 265 | }, 266 | { 267 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 268 | "defaultValue": 1000, 269 | "name": "eureka.server.peer-node-total-connections", 270 | "type": "java.lang.Integer" 271 | }, 272 | { 273 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 274 | "defaultValue": 500, 275 | "name": "eureka.server.peer-node-total-connections-per-host", 276 | "type": "java.lang.Integer" 277 | }, 278 | { 279 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 280 | "defaultValue": true, 281 | "name": "eureka.server.prime-aws-replica-connections", 282 | "type": "java.lang.Boolean" 283 | }, 284 | { 285 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 286 | "name": "eureka.server.property-resolver", 287 | "type": "org.springframework.core.env.PropertyResolver" 288 | }, 289 | { 290 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 291 | "defaultValue": 10, 292 | "name": "eureka.server.rate-limiter-burst-size", 293 | "type": "java.lang.Integer" 294 | }, 295 | { 296 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 297 | "defaultValue": false, 298 | "name": "eureka.server.rate-limiter-enabled", 299 | "type": "java.lang.Boolean" 300 | }, 301 | { 302 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 303 | "defaultValue": 100, 304 | "name": "eureka.server.rate-limiter-full-fetch-average-rate", 305 | "type": "java.lang.Integer" 306 | }, 307 | { 308 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 309 | "name": "eureka.server.rate-limiter-privileged-clients", 310 | "type": "java.util.Set" 311 | }, 312 | { 313 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 314 | "defaultValue": 500, 315 | "name": "eureka.server.rate-limiter-registry-fetch-average-rate", 316 | "type": "java.lang.Integer" 317 | }, 318 | { 319 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 320 | "defaultValue": false, 321 | "name": "eureka.server.rate-limiter-throttle-standard-clients", 322 | "type": "java.lang.Boolean" 323 | }, 324 | { 325 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 326 | "defaultValue": 0, 327 | "name": "eureka.server.registry-sync-retries", 328 | "type": "java.lang.Integer" 329 | }, 330 | { 331 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 332 | "defaultValue": 0, 333 | "name": "eureka.server.registry-sync-retry-wait-ms", 334 | "type": "java.lang.Long" 335 | }, 336 | { 337 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 338 | "name": "eureka.server.remote-region-app-whitelist", 339 | "type": "java.util.Map>" 340 | }, 341 | { 342 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 343 | "defaultValue": 1000, 344 | "name": "eureka.server.remote-region-connect-timeout-ms", 345 | "type": "java.lang.Integer" 346 | }, 347 | { 348 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 349 | "defaultValue": 30, 350 | "name": "eureka.server.remote-region-connection-idle-timeout-seconds", 351 | "type": "java.lang.Integer" 352 | }, 353 | { 354 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 355 | "defaultValue": 20, 356 | "name": "eureka.server.remote-region-fetch-thread-pool-size", 357 | "type": "java.lang.Integer" 358 | }, 359 | { 360 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 361 | "defaultValue": 1000, 362 | "name": "eureka.server.remote-region-read-timeout-ms", 363 | "type": "java.lang.Integer" 364 | }, 365 | { 366 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 367 | "defaultValue": 30, 368 | "name": "eureka.server.remote-region-registry-fetch-interval", 369 | "type": "java.lang.Integer" 370 | }, 371 | { 372 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 373 | "defaultValue": 1000, 374 | "name": "eureka.server.remote-region-total-connections", 375 | "type": "java.lang.Integer" 376 | }, 377 | { 378 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 379 | "defaultValue": 500, 380 | "name": "eureka.server.remote-region-total-connections-per-host", 381 | "type": "java.lang.Integer" 382 | }, 383 | { 384 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 385 | "defaultValue": "", 386 | "name": "eureka.server.remote-region-trust-store", 387 | "type": "java.lang.String" 388 | }, 389 | { 390 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 391 | "defaultValue": "changeit", 392 | "name": "eureka.server.remote-region-trust-store-password", 393 | "type": "java.lang.String" 394 | }, 395 | { 396 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 397 | "name": "eureka.server.remote-region-urls", 398 | "type": "java.lang.String[]" 399 | }, 400 | { 401 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 402 | "name": "eureka.server.remote-region-urls-with-name", 403 | "type": "java.util.Map" 404 | }, 405 | { 406 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 407 | "defaultValue": 0.85, 408 | "name": "eureka.server.renewal-percent-threshold", 409 | "type": "java.lang.Double" 410 | }, 411 | { 412 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 413 | "defaultValue": 0, 414 | "name": "eureka.server.renewal-threshold-update-interval-ms", 415 | "type": "java.lang.Integer" 416 | }, 417 | { 418 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 419 | "defaultValue": 180, 420 | "name": "eureka.server.response-cache-auto-expiration-in-seconds", 421 | "type": "java.lang.Long" 422 | }, 423 | { 424 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 425 | "defaultValue": 0, 426 | "name": "eureka.server.response-cache-update-interval-ms", 427 | "type": "java.lang.Long" 428 | }, 429 | { 430 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 431 | "defaultValue": 0, 432 | "name": "eureka.server.retention-time-in-m-s-in-delta-queue", 433 | "type": "java.lang.Long" 434 | }, 435 | { 436 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 437 | "defaultValue": 3, 438 | "name": "eureka.server.route53-bind-rebind-retries", 439 | "type": "java.lang.Integer" 440 | }, 441 | { 442 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 443 | "defaultValue": 0, 444 | "name": "eureka.server.route53-binding-retry-interval-ms", 445 | "type": "java.lang.Integer" 446 | }, 447 | { 448 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 449 | "defaultValue": 30, 450 | "name": "eureka.server.route53-domain-t-t-l", 451 | "type": "java.lang.Long" 452 | }, 453 | { 454 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 455 | "defaultValue": true, 456 | "name": "eureka.server.sync-when-timestamp-differs", 457 | "type": "java.lang.Boolean" 458 | }, 459 | { 460 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 461 | "defaultValue": true, 462 | "name": "eureka.server.use-read-only-response-cache", 463 | "type": "java.lang.Boolean" 464 | }, 465 | { 466 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 467 | "defaultValue": 0, 468 | "name": "eureka.server.wait-time-in-ms-when-sync-empty", 469 | "type": "java.lang.Integer" 470 | }, 471 | { 472 | "sourceType": "org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean", 473 | "name": "eureka.server.xml-codec-name", 474 | "type": "java.lang.String" 475 | } 476 | ] 477 | } -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- 1 | org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ 2 | org.springframework.cloud.netflix.eureka.server.EurekaServerAutoConfiguration -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/eureka/server.properties: -------------------------------------------------------------------------------- 1 | spring.http.encoding.force=false -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/fonts/montserrat-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/fonts/montserrat-webfont.eot -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/fonts/montserrat-webfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | 783 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | 1034 | 1035 | 1036 | 1037 | 1038 | 1039 | 1040 | 1041 | 1042 | 1043 | 1044 | 1045 | 1046 | 1047 | 1048 | 1049 | 1050 | 1051 | 1052 | 1053 | 1054 | 1055 | 1056 | 1057 | 1058 | 1059 | 1060 | 1061 | 1062 | 1063 | 1064 | 1065 | 1066 | 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | 1081 | 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | 1102 | 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | 1109 | 1110 | 1111 | 1112 | 1113 | 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | 1242 | 1243 | 1244 | 1245 | 1246 | 1247 | 1248 | 1249 | 1250 | 1251 | 1252 | 1253 | 1254 | 1255 | 1256 | 1257 | 1258 | 1259 | 1260 | 1261 | 1262 | 1263 | 1264 | 1265 | 1266 | 1267 | 1268 | 1269 | 1270 | 1271 | 1272 | 1273 | 1274 | 1275 | 1276 | 1277 | 1278 | 1279 | 1280 | 1281 | 1282 | 1283 | -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/fonts/montserrat-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/fonts/montserrat-webfont.ttf -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/fonts/montserrat-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/fonts/montserrat-webfont.woff -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/fonts/varela_round-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/fonts/varela_round-webfont.eot -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/fonts/varela_round-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/fonts/varela_round-webfont.ttf -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/fonts/varela_round-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/fonts/varela_round-webfont.woff -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/images/404-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/images/404-icon.png -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/images/homepage-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/images/homepage-bg.jpg -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/images/platform-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/images/platform-bg.png -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/images/platform-spring-xd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/images/platform-spring-xd.png -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/images/spring-logo-eureka-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/images/spring-logo-eureka-mobile.png -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/static/eureka/images/spring-logo-eureka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringCloud/spring-cloud-eureka/c19b5300317f084b93098b52ad01775ab4958994/eureka-server-ui/src/main/resources/static/eureka/images/spring-logo-eureka.png -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/templates/eureka/header.ftl: -------------------------------------------------------------------------------- 1 | <#import "/spring.ftl" as spring /> 2 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/templates/eureka/lastn.ftl: -------------------------------------------------------------------------------- 1 | <#import "/spring.ftl" as spring /> 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Eureka - Last N events 10 | 11 | 12 | 13 | 14 | 17 | 18 | <#include "header.ftl"> 19 | 20 |
21 | <#include "navbar.ftl"> 22 | 23 |
24 | 28 |
29 |
30 | 31 | 32 | 33 | 34 | 35 | <#if lastNCanceled?has_content> 36 | <#list lastNCanceled as entry> 37 | 38 | 39 | <#else> 40 | 41 | 42 | 43 |
TimestampLease
${entry.date?datetime}${entry.id}
No results available
44 |
45 |
46 | 47 | 48 | 49 | 50 | 51 | <#if lastNRegistered?has_content> 52 | <#list lastNRegistered as entry> 53 | 54 | 55 | <#else> 56 | 57 | 58 | 59 |
TimestampLease
${entry.date?datetime}${entry.id}
No results available
60 |
61 |
62 |
63 |
64 | 65 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/templates/eureka/navbar.ftl: -------------------------------------------------------------------------------- 1 |

纯公益-Eureka Server!

2 |
3 |
4 |
5 |

公益-Eureka Server注册中心

6 |

7 | 在Spring Cloud应用的配置文件中,设置Eureka Server的地址为: 8 | eureka.client.serviceUrl.defaultZone=http://eureka.springcloud.cn/eureka/ 9 |

10 |
11 |

注意事项

12 |
13 |
  • 本Eureka Server为公益注册中心,仅作为帮助Spring Cloud的开发者进行学习和调试
  • 14 |
  • 为了更好服务大家,请勿对本注册中心进行压测
  • 15 |
    16 |
    17 |
    18 |
    19 |

    关于我们

    20 |
    21 |

    在学习与使用过程中遇到困难,就来Spring Cloud中国社区与我们一起探讨交流吧。

    22 |
    23 |
  • Spring Cloud中国社区(http://springcloud.cn),我们致力于成为中国最专业最权威Spring Boot和Spring Cloud交流社区!
  • 24 |
  • 【Spring Cloud中国QQ群①:415028731(已满)】
  • 25 |
  • 【Spring Cloud中国QQ群②:530321604(已满)】
  • 26 |
  • 【Spring Cloud中国QQ群③:643970587(未满)】
  • 27 |
  • 【Spring Cloud中国QQ群④:643970587(未满)】
  • 28 |
  • 加微信Software_King,可以拉入Spring Cloud中国社区微信群
  • 29 |
    30 |
    31 |
    32 | 33 |

    System Status

    34 |
    35 |
    36 | 37 | <#if amazonInfo??> 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 |
    EUREKA SERVERAMI: ${amiId!}
    Zone${availabilityZone!}
    instance-id${instanceId!}
    Environment${environment!}
    Data center${datacenter!}
    60 |
    61 |
    62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 |
    Current time${currentTime}
    Uptime${upTime}
    Lease expiration enabled${registry.leaseExpirationEnabled?c}
    Renews threshold${registry.numOfRenewsPerMinThreshold}
    Renews (last min)${registry.numOfRenewsInLastMin}
    84 |
    85 |
    86 | 87 | <#--<#if isBelowRenewThresold>--> 88 | <#--<#if !registry.selfPreservationModeEnabled>--> 89 | <#--

    RENEWALS ARE LESSER THAN THE THRESHOLD. THE SELF PRESERVATION MODE IS TURNED OFF.THIS MAY NOT PROTECT INSTANCE EXPIRY IN CASE OF NETWORK/OTHER PROBLEMS.

    --> 90 | <#--<#else>--> 91 | <#--

    EMERGENCY! EUREKA MAY BE INCORRECTLY CLAIMING INSTANCES ARE UP WHEN THEY'RE NOT. RENEWALS ARE LESSER THAN THRESHOLD AND HENCE THE INSTANCES ARE NOT BEING EXPIRED JUST TO BE SAFE.

    --> 92 | <#----> 93 | <#--<#elseif !registry.selfPreservationModeEnabled>--> 94 | <#--

    THE SELF PRESERVATION MODE IS TURNED OFF.THIS MAY NOT PROTECT INSTANCE EXPIRY IN CASE OF NETWORK/OTHER PROBLEMS.

    --> 95 | <#----> 96 | 97 |

    DS Replicas

    98 | 103 | 104 | -------------------------------------------------------------------------------- /eureka-server-ui/src/main/resources/templates/eureka/status.ftl: -------------------------------------------------------------------------------- 1 | <#import "/spring.ftl" as spring /> 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Eureka 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | <#include "header.ftl"> 21 |
    22 | <#include "navbar.ftl"> 23 |

    Instances currently registered with Eureka

    24 | 25 | 26 | 27 | 28 | 29 | <#if apps?has_content> 30 | <#list apps as app> 31 | 32 | 33 | 38 | 43 | 61 | 62 | 63 | <#else> 64 | 65 | 66 | 67 | 68 |
    ApplicationAMIsAvailability ZonesStatus
    ${app.name} 34 | <#list app.amiCounts as amiCount> 35 | ${amiCount.key} (${amiCount.value})<#if amiCount_has_next>, 36 | 37 | 39 | <#list app.zoneCounts as zoneCount> 40 | ${zoneCount.key} (${zoneCount.value})<#if zoneCount_has_next>, 41 | 42 | 44 | <#list app.instanceInfos as instanceInfo> 45 | <#if instanceInfo.isNotUp> 46 | 47 | 48 | ${instanceInfo.status} (${instanceInfo.instances?size}) - 49 | <#if instanceInfo.isNotUp> 50 | 51 | 52 | <#list instanceInfo.instances as instance> 53 | <#if instance.isHref> 54 | ${instance.id} 55 | <#else> 56 | ${instance.id} 57 | <#if instance_has_next>, 58 | 59 | 60 |
    No instances available
    69 | 70 |

    General Info

    71 | 72 | 73 | 74 | 75 | 76 | 77 | <#list statusInfo.generalStats?keys as stat> 78 | 79 | 80 | 81 | 82 | <#list statusInfo.applicationStats?keys as stat> 83 | 84 | 85 | 86 | 87 | 88 |
    NameValue
    ${stat}${statusInfo.generalStats[stat]!""}
    ${stat}${statusInfo.applicationStats[stat]!""}
    89 | 90 |

    Instance Info

    91 | 92 | 93 | 94 | 95 | 96 | 97 | <#list instanceInfo?keys as key> 98 | 99 | 100 | 101 | 102 | 103 |
    NameValue
    ${key}${instanceInfo[key]!""}
    104 |
    105 | 106 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /eureka-server.log: -------------------------------------------------------------------------------- 1 | 2018-05-14 17:55:57.680 INFO 2115 --- [main] c.s.eureka.EurekaServerApplication : No active profile set, falling back to default profiles: default 2 | 2018-05-14 17:55:57.693 INFO 2115 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5d8445d7: startup date [Mon May 14 17:55:57 CST 2018]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@6f8e8894 3 | 2018-05-14 17:55:58.569 INFO 2115 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=baa98700-99b2-3684-9a06-16d50c5da37f 4 | 2018-05-14 17:55:58.607 INFO 2115 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring 5 | 2018-05-14 17:55:58.696 INFO 2115 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.netflix.metrics.MetricsInterceptorConfiguration$MetricsRestTemplateConfiguration' of type [org.springframework.cloud.netflix.metrics.MetricsInterceptorConfiguration$MetricsRestTemplateConfiguration$$EnhancerBySpringCGLIB$$a165cb2e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 6 | 2018-05-14 17:55:58.713 INFO 2115 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$8b5327ea] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 7 | 2018-05-14 17:55:59.043 INFO 2115 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8761 (http) 8 | 2018-05-14 17:55:59.052 INFO 2115 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] 9 | 2018-05-14 17:55:59.052 INFO 2115 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23 10 | 2018-05-14 17:55:59.143 INFO 2115 --- [localhost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 11 | 2018-05-14 17:55:59.143 INFO 2115 --- [localhost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1450 ms 12 | 2018-05-14 17:55:59.668 INFO 2115 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'metricsFilter' to: [/*] 13 | 2018-05-14 17:55:59.669 INFO 2115 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*] 14 | 2018-05-14 17:55:59.669 INFO 2115 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*] 15 | 2018-05-14 17:55:59.669 INFO 2115 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*] 16 | 2018-05-14 17:55:59.669 INFO 2115 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*] 17 | 2018-05-14 17:55:59.669 INFO 2115 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'webRequestTraceFilter' to: [/*] 18 | 2018-05-14 17:55:59.670 INFO 2115 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'servletContainer' to urls: [/eureka/*] 19 | 2018-05-14 17:55:59.670 INFO 2115 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'applicationContextIdFilter' to: [/*] 20 | 2018-05-14 17:55:59.670 INFO 2115 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/] 21 | 2018-05-14 17:55:59.732 INFO 2115 --- [localhost-startStop-1] c.s.j.s.i.a.WebApplicationImpl : Initiating Jersey application, version 'Jersey: 1.19.1 03/11/2016 02:08 PM' 22 | 2018-05-14 17:55:59.794 INFO 2115 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider : Using JSON encoding codec LegacyJacksonJson 23 | 2018-05-14 17:55:59.796 INFO 2115 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider : Using JSON decoding codec LegacyJacksonJson 24 | 2018-05-14 17:55:59.969 INFO 2115 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider : Using XML encoding codec XStreamXml 25 | 2018-05-14 17:55:59.970 INFO 2115 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider : Using XML decoding codec XStreamXml 26 | 2018-05-14 17:56:00.508 WARN 2115 --- [main] c.n.c.sources.URLConfigurationSource : No URLs will be polled as dynamic configuration sources. 27 | 2018-05-14 17:56:00.508 INFO 2115 --- [main] c.n.c.sources.URLConfigurationSource : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath. 28 | 2018-05-14 17:56:00.512 WARN 2115 --- [main] c.n.c.sources.URLConfigurationSource : No URLs will be polled as dynamic configuration sources. 29 | 2018-05-14 17:56:00.513 INFO 2115 --- [main] c.n.c.sources.URLConfigurationSource : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath. 30 | 2018-05-14 17:56:00.836 INFO 2115 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5d8445d7: startup date [Mon May 14 17:55:57 CST 2018]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@6f8e8894 31 | 2018-05-14 17:56:00.911 INFO 2115 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest) 32 | 2018-05-14 17:56:00.912 INFO 2115 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) 33 | 2018-05-14 17:56:00.916 INFO 2115 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/],methods=[GET]}" onto public java.lang.String org.springframework.cloud.netflix.eureka.server.EurekaController.status(javax.servlet.http.HttpServletRequest,java.util.Map) 34 | 2018-05-14 17:56:00.917 INFO 2115 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/lastn],methods=[GET]}" onto public java.lang.String org.springframework.cloud.netflix.eureka.server.EurekaController.lastn(javax.servlet.http.HttpServletRequest,java.util.Map) 35 | 2018-05-14 17:56:00.947 INFO 2115 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] 36 | 2018-05-14 17:56:00.947 INFO 2115 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] 37 | 2018-05-14 17:56:00.987 INFO 2115 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] 38 | 2018-05-14 17:56:01.551 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 39 | 2018-05-14 17:56:01.552 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String) 40 | 2018-05-14 17:56:01.553 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 41 | 2018-05-14 17:56:01.554 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/logfile || /logfile.json],methods=[GET || HEAD]}" onto public void org.springframework.boot.actuate.endpoint.mvc.LogFileMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws javax.servlet.ServletException,java.io.IOException 42 | 2018-05-14 17:56:01.555 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String) 43 | 2018-05-14 17:56:01.555 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 44 | 2018-05-14 17:56:01.555 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/refresh || /refresh.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke() 45 | 2018-05-14 17:56:01.556 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/service-registry/instance-status],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.getStatus() 46 | 2018-05-14 17:56:01.556 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/service-registry/instance-status],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.setStatus(java.lang.String) 47 | 2018-05-14 17:56:01.556 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 48 | 2018-05-14 17:56:01.558 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 49 | 2018-05-14 17:56:01.559 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String) 50 | 2018-05-14 17:56:01.559 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map) 51 | 2018-05-14 17:56:01.560 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 52 | 2018-05-14 17:56:01.560 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/features || /features.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 53 | 2018-05-14 17:56:01.561 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/archaius || /archaius.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 54 | 2018-05-14 17:56:01.561 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/env],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.value(java.util.Map) 55 | 2018-05-14 17:56:01.561 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/env/reset],methods=[POST]}" onto public java.util.Map org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.reset() 56 | 2018-05-14 17:56:01.562 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String) 57 | 2018-05-14 17:56:01.563 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 58 | 2018-05-14 17:56:01.563 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 59 | 2018-05-14 17:56:01.563 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/beans || /beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 60 | 2018-05-14 17:56:01.564 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException 61 | 2018-05-14 17:56:01.565 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal) 62 | 2018-05-14 17:56:01.565 INFO 2115 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping : Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke() 63 | 2018-05-14 17:56:01.648 INFO 2115 --- [main] o.s.w.s.v.f.FreeMarkerConfigurer : ClassTemplateLoader for Spring macros added to FreeMarker configuration 64 | 2018-05-14 17:56:01.800 INFO 2115 --- [main] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING 65 | 2018-05-14 17:56:01.851 INFO 2115 --- [main] com.netflix.discovery.DiscoveryClient : Initializing Eureka in region us-east-1 66 | 2018-05-14 17:56:01.851 INFO 2115 --- [main] com.netflix.discovery.DiscoveryClient : Client configured to neither register nor query for data. 67 | 2018-05-14 17:56:01.856 INFO 2115 --- [main] com.netflix.discovery.DiscoveryClient : Discovery Client initialized at timestamp 1526291761856 with initial instances count: 0 68 | 2018-05-14 17:56:01.923 INFO 2115 --- [main] c.n.eureka.DefaultEurekaServerContext : Initializing ... 69 | 2018-05-14 17:56:01.926 WARN 2115 --- [main] c.n.eureka.cluster.PeerEurekaNodes : The replica size seems to be empty. Check the route 53 DNS Registry 70 | 2018-05-14 17:56:01.943 INFO 2115 --- [main] c.n.e.registry.AbstractInstanceRegistry : Finished initializing remote region registries. All known remote regions: [] 71 | 2018-05-14 17:56:01.944 INFO 2115 --- [main] c.n.eureka.DefaultEurekaServerContext : Initialized 72 | 2018-05-14 17:56:02.155 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup 73 | 2018-05-14 17:56:02.166 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'configurationPropertiesRebinder' has been autodetected for JMX exposure 74 | 2018-05-14 17:56:02.167 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'refreshEndpoint' has been autodetected for JMX exposure 75 | 2018-05-14 17:56:02.167 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'environmentManager' has been autodetected for JMX exposure 76 | 2018-05-14 17:56:02.168 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'serviceRegistryEndpoint' has been autodetected for JMX exposure 77 | 2018-05-14 17:56:02.169 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'refreshScope' has been autodetected for JMX exposure 78 | 2018-05-14 17:56:02.171 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Located managed bean 'environmentManager': registering with JMX server as MBean [org.springframework.cloud.context.environment:name=environmentManager,type=EnvironmentManager] 79 | 2018-05-14 17:56:02.191 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Located managed bean 'serviceRegistryEndpoint': registering with JMX server as MBean [org.springframework.cloud.client.serviceregistry.endpoint:name=serviceRegistryEndpoint,type=ServiceRegistryEndpoint] 80 | 2018-05-14 17:56:02.198 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Located managed bean 'refreshScope': registering with JMX server as MBean [org.springframework.cloud.context.scope.refresh:name=refreshScope,type=RefreshScope] 81 | 2018-05-14 17:56:02.209 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Located managed bean 'configurationPropertiesRebinder': registering with JMX server as MBean [org.springframework.cloud.context.properties:name=configurationPropertiesRebinder,context=5d8445d7,type=ConfigurationPropertiesRebinder] 82 | 2018-05-14 17:56:02.216 INFO 2115 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Located managed bean 'refreshEndpoint': registering with JMX server as MBean [org.springframework.cloud.endpoint:name=refreshEndpoint,type=RefreshEndpoint] 83 | 2018-05-14 17:56:02.229 INFO 2115 --- [main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 0 84 | 2018-05-14 17:56:02.229 INFO 2115 --- [main] o.s.c.n.e.s.EurekaServiceRegistry : Registering application eureka-server with eureka with status UP 85 | 2018-05-14 17:56:02.269 INFO 2115 --- [Thread-23] o.s.c.n.e.server.EurekaServerBootstrap : Setting the eureka configuration.. 86 | 2018-05-14 17:56:02.269 INFO 2115 --- [Thread-23] o.s.c.n.e.server.EurekaServerBootstrap : Eureka data center value eureka.datacenter is not set, defaulting to default 87 | 2018-05-14 17:56:02.269 INFO 2115 --- [Thread-23] o.s.c.n.e.server.EurekaServerBootstrap : Eureka environment value eureka.environment is not set, defaulting to test 88 | 2018-05-14 17:56:02.280 INFO 2115 --- [Thread-23] o.s.c.n.e.server.EurekaServerBootstrap : isAws returned false 89 | 2018-05-14 17:56:02.281 INFO 2115 --- [Thread-23] o.s.c.n.e.server.EurekaServerBootstrap : Initialized server context 90 | 2018-05-14 17:56:02.281 INFO 2115 --- [Thread-23] c.n.e.r.PeerAwareInstanceRegistryImpl : Got 1 instances from neighboring DS node 91 | 2018-05-14 17:56:02.281 INFO 2115 --- [Thread-23] c.n.e.r.PeerAwareInstanceRegistryImpl : Renew threshold is: 1 92 | 2018-05-14 17:56:02.281 INFO 2115 --- [Thread-23] c.n.e.r.PeerAwareInstanceRegistryImpl : Changing status to UP 93 | 2018-05-14 17:56:02.288 INFO 2115 --- [Thread-23] e.s.EurekaServerInitializerConfiguration : Started Eureka Server 94 | 2018-05-14 17:56:02.324 INFO 2115 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8761 (http) 95 | 2018-05-14 17:56:02.325 INFO 2115 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8761 96 | 2018-05-14 17:56:02.329 INFO 2115 --- [main] c.s.eureka.EurekaServerApplication : Started EurekaServerApplication in 5.726 seconds (JVM running for 7.351) 97 | 2018-05-14 17:56:26.325 INFO 2115 --- [http-nio-8761-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet' 98 | 2018-05-14 17:56:26.325 INFO 2115 --- [http-nio-8761-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started 99 | 2018-05-14 17:56:26.346 INFO 2115 --- [http-nio-8761-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 21 ms 100 | 2018-05-14 17:57:02.284 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 101 | 2018-05-14 17:58:02.285 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 102 | 2018-05-14 17:59:02.291 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 4ms 103 | 2018-05-14 18:00:02.294 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 3ms 104 | 2018-05-14 18:01:02.296 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 105 | 2018-05-14 18:02:02.297 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 106 | 2018-05-14 18:03:02.302 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 4ms 107 | 2018-05-14 18:04:02.303 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 108 | 2018-05-14 18:05:02.304 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 109 | 2018-05-14 18:06:01.938 WARN 2115 --- [Eureka-PeerNodesUpdater] c.n.eureka.cluster.PeerEurekaNodes : The replica size seems to be empty. Check the route 53 DNS Registry 110 | 2018-05-14 18:06:02.307 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 2ms 111 | 2018-05-14 18:07:02.308 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 112 | 2018-05-14 18:08:02.310 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 1ms 113 | 2018-05-14 18:09:02.312 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 114 | 2018-05-14 18:10:02.317 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 4ms 115 | 2018-05-14 18:11:01.955 INFO 2115 --- [ReplicaAwareInstanceRegistry - RenewalThresholdUpdater] c.n.e.r.PeerAwareInstanceRegistryImpl : Current renewal threshold is : 0 116 | 2018-05-14 18:11:02.323 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 4ms 117 | 2018-05-14 18:12:02.326 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 2ms 118 | 2018-05-14 18:13:02.326 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 119 | 2018-05-14 18:14:02.327 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 120 | 2018-05-14 18:15:02.331 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 3ms 121 | 2018-05-14 18:16:01.947 WARN 2115 --- [Eureka-PeerNodesUpdater] c.n.eureka.cluster.PeerEurekaNodes : The replica size seems to be empty. Check the route 53 DNS Registry 122 | 2018-05-14 18:16:02.332 INFO 2115 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms 123 | -------------------------------------------------------------------------------- /eureka-server/.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 | .mvn 19 | 20 | ### NetBeans ### 21 | /nbproject/private/ 22 | /build/ 23 | /nbbuild/ 24 | /dist/ 25 | /nbdist/ 26 | /.nb-gradle/ -------------------------------------------------------------------------------- /eureka-server/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | eureka-server 7 | jar 8 | 9 | eureka-server 10 | 11 | 12 | cn.springcloud.eureka 13 | spring-cloud-eureka 14 | 1.0.0 15 | 16 | 17 | 18 | cn.springcloud.eureka.EurekaServerApplication 19 | 20 | 21 | 22 | 23 | 24 | 25 | cn.springcloud.eureka 26 | eureka-server-ui 27 | 28 | 29 | org.springframework.cloud 30 | spring-cloud-starter-netflix-eureka-server 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | org.springframework.boot 39 | spring-boot-maven-plugin 40 | 41 | ${start-class} 42 | true 43 | 44 | 45 | 46 | 47 | repackage 48 | build-info 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /eureka-server/src/main/java/cn/springcloud/eureka/EurekaServerApplication.java: -------------------------------------------------------------------------------- 1 | package cn.springcloud.eureka; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; 6 | 7 | @SpringBootApplication 8 | @EnableEurekaServer 9 | public class EurekaServerApplication { 10 | 11 | public static void main(String[] args) { 12 | SpringApplication.run(EurekaServerApplication.class, args); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /eureka-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=eureka-server 2 | 3 | server.port=8089 4 | 5 | eureka.instance.hostname=localhost 6 | eureka.client.register-with-eureka=false 7 | eureka.client.fetch-registry=false 8 | # �رձ������� 9 | eureka.server.enable-self-preservation=false 10 | 11 | 12 | logging.file=${spring.application.name}.log 13 | 14 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.springframework.boot 5 | spring-boot-starter-parent 6 | 2.0.3.RELEASE 7 | 8 | 9 | cn.springcloud.eureka 10 | spring-cloud-eureka 11 | 1.0.0 12 | 13 | spring-cloud-eureka 14 | 15 | pom 16 | 4.0.0 17 | https://github.com/SpringCloud/spring-cloud-eureka 18 | 19 | 20 | eureka-server 21 | eureka-server-ui 22 | 23 | 24 | 25 | 1.8 26 | UTF-8 27 | Finchley.RELEASE 28 | 29 | 30 | 31 | 32 | 33 | ${project.groupId} 34 | eureka-server 35 | ${project.version} 36 | 37 | 38 | 39 | ${project.groupId} 40 | eureka-server-ui 41 | ${project.version} 42 | 43 | 44 | 45 | org.springframework.cloud 46 | spring-cloud-dependencies 47 | ${spring-cloud.version} 48 | pom 49 | import 50 | 51 | 52 | 53 | 54 | 55 | 56 | ${artifactId} 57 | 58 | 59 | org.apache.maven.plugins 60 | maven-compiler-plugin 61 | 3.7.0 62 | 63 | ${project.build.sourceEncoding} 64 | ${java.version} 65 | ${java.version} 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | spring-milestones 74 | Spring Milestones 75 | https://repo.spring.io/milestone 76 | 77 | false 78 | 79 | 80 | 81 | --------------------------------------------------------------------------------