spring-boot-api-regcovery-dashboard-starter

api-regcovery web control that adds, deletes, and checks services.

License

License

Categories

Categories

Spring Boot Container Microservices
GroupId

GroupId

com.github.microcmpt
ArtifactId

ArtifactId

spring-boot-api-regcovery-dashboard-starter
Last Version

Last Version

1.0.4
Release Date

Release Date

Type

Type

jar
Description

Description

spring-boot-api-regcovery-dashboard-starter
api-regcovery web control that adds, deletes, and checks services.
Project URL

Project URL

https://microcmpt.github.io
Source Code Management

Source Code Management

https://github.com/microcmpt/spring-boot-api-regcovery-dashboard-starter

Download spring-boot-api-regcovery-dashboard-starter

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.microcmpt/spring-boot-api-regcovery-dashboard-starter/ -->
<dependency>
    <groupId>com.github.microcmpt</groupId>
    <artifactId>spring-boot-api-regcovery-dashboard-starter</artifactId>
    <version>1.0.4</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.microcmpt/spring-boot-api-regcovery-dashboard-starter/
implementation 'com.github.microcmpt:spring-boot-api-regcovery-dashboard-starter:1.0.4'
// https://jarcasting.com/artifacts/com.github.microcmpt/spring-boot-api-regcovery-dashboard-starter/
implementation ("com.github.microcmpt:spring-boot-api-regcovery-dashboard-starter:1.0.4")
'com.github.microcmpt:spring-boot-api-regcovery-dashboard-starter:jar:1.0.4'
<dependency org="com.github.microcmpt" name="spring-boot-api-regcovery-dashboard-starter" rev="1.0.4">
  <artifact name="spring-boot-api-regcovery-dashboard-starter" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.microcmpt', module='spring-boot-api-regcovery-dashboard-starter', version='1.0.4')
)
libraryDependencies += "com.github.microcmpt" % "spring-boot-api-regcovery-dashboard-starter" % "1.0.4"
[com.github.microcmpt/spring-boot-api-regcovery-dashboard-starter "1.0.4"]

Dependencies

compile (9)

Group / Artifact Type Version
org.projectlombok : lombok jar 1.16.20
com.google.guava : guava jar 23.0
org.apache.zookeeper : zookeeper jar 3.4.10
com.101tec : zkclient jar 0.10
org.webjars : webjars-locator jar 0.31
org.webjars : bootstrap jar 3.3.7-1
org.webjars : jquery jar 3.1.1
org.springframework.boot : spring-boot-starter-freemarker jar 1.5.10.RELEASE
org.springframework.boot : spring-boot-starter-actuator jar 1.5.10.RELEASE

test (1)

Group / Artifact Type Version
junit : junit jar 4.12

Project Modules

There are no modules declared in this project.

spring-boot-api-regcovery-dashboard-starter

Build Status License

Introduction

用于和spring boot结合自动配置,开启服务注册中心web控制台,可以查看服务注册中心服务信息详细或者删除新增修改服务操作。

Quick Start

step1:引入spring-boot-api-regcovery-dashboard包
maven:

<dependency>
  <groupId>com.github.microcmpt</groupId>
  <artifactId>spring-boot-api-regcovery-dashboard-starter</artifactId>
  <version>1.0.1</version>
</dependency>

gradle:

compile 'com.github.microcmpt:spring-boot-api-regcovery-dashboard-starter:1.0.0'

step2:开启注册中心web控制台,在启动类上加@EnableRegcoveryDashboard

@SpringBootApplication
@EnableRpc4jServer
@EnableRegcoveryDashboard
public class Rpc4jServerSampleApplication {
	public static void main(String[] args) {
		SpringApplication.run(Rpc4jServerSampleApplication.class, args);
	}
}

step3:访问http://localhost:8080/regcovery-ui.html

com.github.microcmpt

microcmpt

Microservice architecture components.

Versions

Version
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0