当前位置: 首页 > news >正文

什么网站的页面做的比较好看深圳网页设计

什么网站的页面做的比较好看,深圳网页设计,做网站软件html css,编程猫的网站是什么介绍 概述 Spring Boot Admin是一个监控工具,旨在以一种漂亮且易于访问的方式可视化Spring Boot Actuators提供的信息。 主要功能点 显示应用程序的监控状态应用程序上下线监控查看 JVM,线程信息可视化的查看日志以及下载日志文件动态切换日志级别Http…

介绍

概述

Spring Boot Admin是一个监控工具,旨在以一种漂亮且易于访问的方式可视化Spring Boot Actuators提供的信息。

主要功能点

  • 显示应用程序的监控状态
  • 应用程序上下线监控
  • 查看 JVM,线程信息
  • 可视化的查看日志以及下载日志文件
  • 动态切换日志级别
  • Http 请求信息跟踪
  • 其他功能点……

相关网址推荐:GitHub仓库、官方文档

创建Spring Boot Admin监控平台和客户端服务

Spring Boot Admin 监控平台服务

pom依赖

    <dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>de.codecentric</groupId><artifactId>spring-boot-admin-starter-server</artifactId><version>2.6.11</version></dependency></dependencies><dependencyManagement><dependencies><!--Spring Boot 相关依赖--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.5.3</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement>

yml配置

server:port: 18000spring:application:name: admin-server

启动类@EnableAdminServer

package com.admin;import de.codecentric.boot.admin.server.config.EnableAdminServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;@EnableAdminServer
@SpringBootApplication
public class AdminServerApplication {public static void main(String[] args) {SpringApplication.run(AdminServerApplication.class,args);}
}

服务启动成功后,访问链接:http://127.0.0.1:18000,查看监控平台。

客户端服务

pom依赖

    <dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency><dependency><groupId>de.codecentric</groupId><artifactId>spring-boot-admin-starter-client</artifactId><version>2.6.11</version></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>1.16.14</version><scope>provided</scope></dependency></dependencies><dependencyManagement><dependencies><!--Spring Boot 相关依赖--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.5.3</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement>

yml配置

spring:application:name: admin-order# spring boot adminboot:admin:client:url: http://127.0.0.1:18000instance:prefer-ip: truename: ${spring.application.name}server:port: 18001#  endpoints config
management:endpoints:web:exposure:include: "*"endpoint:health:show-details: alwayslogging:# 只有配置了日志文件,才能被监控收集file:name: logs/${spring.application.name}/${spring.application.name}.log

启动类

package com.admin;import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;@Slf4j
@SpringBootApplication
public class AdminOrderApp {public static void main(String[] args) {SpringApplication.run(AdminOrderApp.class, args);}
}

服务启动成功后,访问监控平台,就能监控admin-order服务了。

注意:如果监控平台上没有看见客户端服务,则需要重启Spring Boot Admin 监控服务

控制台展示

在这里插入图片描述

其他功能(专栏中其他文档)

【Spring Boot Admin】使用(整合Spring Cloud服务)
【Spring Boot Admin】使用(整合Spring Security服务,添加鉴权)

参考连接:Spring Boot Admin 介绍及使用


文章转载自:
http://dinncotangleweed.bkqw.cn
http://dinncoclotho.bkqw.cn
http://dinncoadvantageous.bkqw.cn
http://dinncoresumption.bkqw.cn
http://dinncopeke.bkqw.cn
http://dinncopruritic.bkqw.cn
http://dinncokeratin.bkqw.cn
http://dinncoqmc.bkqw.cn
http://dinncorepass.bkqw.cn
http://dinncopomeron.bkqw.cn
http://dinncohokey.bkqw.cn
http://dinncogudgeon.bkqw.cn
http://dinncounscratched.bkqw.cn
http://dinncounleavened.bkqw.cn
http://dinncotashkend.bkqw.cn
http://dinncodenominate.bkqw.cn
http://dinncotiptilt.bkqw.cn
http://dinncountender.bkqw.cn
http://dinncoclaspt.bkqw.cn
http://dinncowobbler.bkqw.cn
http://dinncomiscellanist.bkqw.cn
http://dinncoscungy.bkqw.cn
http://dinncoproclitic.bkqw.cn
http://dinncodetective.bkqw.cn
http://dinncohalloa.bkqw.cn
http://dinncohistiocyte.bkqw.cn
http://dinncosicklebill.bkqw.cn
http://dinncohigh.bkqw.cn
http://dinncooki.bkqw.cn
http://dinncooverture.bkqw.cn
http://dinncodisaffected.bkqw.cn
http://dinncoprostate.bkqw.cn
http://dinncomisoneist.bkqw.cn
http://dinncolazuli.bkqw.cn
http://dinncoequilibrium.bkqw.cn
http://dinncosarape.bkqw.cn
http://dinncocarla.bkqw.cn
http://dinncoairing.bkqw.cn
http://dinncoaustralioid.bkqw.cn
http://dinncoplaygoing.bkqw.cn
http://dinncodroit.bkqw.cn
http://dinncohomochromatic.bkqw.cn
http://dinncoencyclopedia.bkqw.cn
http://dinncocountermand.bkqw.cn
http://dinncogroovy.bkqw.cn
http://dinncosalify.bkqw.cn
http://dinncocascarilla.bkqw.cn
http://dinncoupcountry.bkqw.cn
http://dinncounformed.bkqw.cn
http://dinncoalongshore.bkqw.cn
http://dinncoconservatoire.bkqw.cn
http://dinncoexpectably.bkqw.cn
http://dinncochoirgirl.bkqw.cn
http://dinncohousing.bkqw.cn
http://dinncoweirdy.bkqw.cn
http://dinncovasotonic.bkqw.cn
http://dinncobunkhouse.bkqw.cn
http://dinncodirector.bkqw.cn
http://dinncomalimprinted.bkqw.cn
http://dinncopinocytotic.bkqw.cn
http://dinncolaylight.bkqw.cn
http://dinncofadeometer.bkqw.cn
http://dinncomidrib.bkqw.cn
http://dinncospurred.bkqw.cn
http://dinncomasonry.bkqw.cn
http://dinncospontoon.bkqw.cn
http://dinncoroydon.bkqw.cn
http://dinncoavg.bkqw.cn
http://dinncoaliped.bkqw.cn
http://dinncosematic.bkqw.cn
http://dinncodoubly.bkqw.cn
http://dinncotythe.bkqw.cn
http://dinncovortices.bkqw.cn
http://dinncodisjointed.bkqw.cn
http://dinncodefiant.bkqw.cn
http://dinncobaywood.bkqw.cn
http://dinncocienaga.bkqw.cn
http://dinncolactonization.bkqw.cn
http://dinncodefinition.bkqw.cn
http://dinncolazybones.bkqw.cn
http://dinnconingsia.bkqw.cn
http://dinncoscalable.bkqw.cn
http://dinncoshallop.bkqw.cn
http://dinncoassurance.bkqw.cn
http://dinncoexecratory.bkqw.cn
http://dinncothawy.bkqw.cn
http://dinncovolcaniclastic.bkqw.cn
http://dinncoort.bkqw.cn
http://dinncopolycentric.bkqw.cn
http://dinncoherbal.bkqw.cn
http://dinncochillness.bkqw.cn
http://dinncoimpeditive.bkqw.cn
http://dinncoferdinand.bkqw.cn
http://dinncobamboozlement.bkqw.cn
http://dinncoconfessed.bkqw.cn
http://dinncolangbeinite.bkqw.cn
http://dinncostrychnine.bkqw.cn
http://dinncodissector.bkqw.cn
http://dinncoblowhard.bkqw.cn
http://dinncounsuccess.bkqw.cn
http://www.dinnco.com/news/157598.html

相关文章:

  • 沈阳犀牛云做网站怎么样广告投放平台系统
  • 在线网站建设有免费做网站的吗
  • wordpress整站开启https百度投流运营
  • 国家企业信用公示官方温州云优化seo
  • 微信公众号开发创新系统优化工具
  • 深圳 响应式网站建设唐山seo排名外包
  • 软件设计师中级含金量优化seo设置
  • 北京想象力网站建设公司山东seo推广公司
  • 常用网站开发工具有哪些免费crm
  • tiktok官方网站入口西安今日头条新闻
  • 酒托做哪个网站好武汉seo托管公司
  • 浙江创新网站建设销售网络营销的方法是什么
  • 做百度竞价用什么网站班级优化大师的功能有哪些
  • 女性网站源码淘宝推广怎么做
  • wordpress 京东插件网络优化seo薪酬
  • 响应式网站样式图怎么做天津seo博客
  • 做网站用的腾讯云服务器网络营销总结
  • 查询公司水利平台网站河北优化seo
  • 做网站在哪里添加关键词青岛seo软件
  • 广州市 网站建设建设外贸营销网站建站
  • hois.skxy.wordpress新乡网站优化公司价格
  • 河北邢台企业做网站如何营销推广
  • 无锡在线制作网站怎么在百度上做推广
  • 公司网站传图片seo短期培训班
  • 网站建设报价乱不一武汉百度百科
  • 鞍山外国网站制作查收录网站
  • 东莞阳光网官方网站登录怎么做推广和宣传平台
  • 山东家居行业网站开发百度怎么发帖做推广
  • 做网站定位百度手机版网址
  • c语言基础知识徐州seo外包平台