返回顶部
首页 > 资讯 > 精选 >Actuator如何在SpringBoot中使用
  • 704
分享到

Actuator如何在SpringBoot中使用

springbootactuator 2023-05-30 21:05:57 704人浏览 安东尼
摘要

今天就跟大家聊聊有关Actuator如何在SpringBoot中使用,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。Spring Boot有四大神器,分别是auto-configura

今天就跟大家聊聊有关Actuator如何在SpringBoot中使用,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

Spring Boot有四大神器,分别是auto-configuration、starters、cli、actuator,本文主要讲actuator。actuator是spring boot提供的对应用系统的自省和监控的集成功能,可以对应用系统进行配置查看、相关功能统计等。

spring-boot-starter-actuator模块的实现对于实施微服务的中小团队来说,可以有效地减少监控系统在采集应用指标时的开发量。当然,它也并不是万能的,有时候我们也需要对其做一些简单的扩展来帮助我们实现自身系统个性化的监控需求。下面,在本文中,我们将详解的介绍一些关于spring-boot-starter-actuator模块的内容,包括它的原生提供的端点以及一些常用的扩展和配置方式。

使用actuator

添加依赖

<dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-actuator</artifactId>    </dependency>

主要暴露的功能

Http方法路径描述鉴权
GET/autoconfig查看自动配置的使用情况true
GET/configprops查看配置属性,包括默认配置true
GET/beans查看bean及其关系列表true
GET/dump打印线程true
GET/env查看所有环境变量true
GET/env/{name}查看具体变量值true
GET/health查看应用健康指标false
GET/info查看应用信息false
GET/mappings查看所有url映射true
GET/metrics查看应用基本指标true
GET/metrics/{name}查看具体指标true
POST/shutdown关闭应用true
GET/trace查看基本追踪信息true

/autoconfig

{  "positiveMatches": {    "AuditAutoConfiguration.AuditEventRepositoryConfiguration": [      {        "condition": "OnBeanCondition",         "message": "@ConditionalOnMissingBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) found no beans"      }    ]  },   "negativeMatches": {    "CacheStatisticsAutoConfiguration": [      {        "condition": "OnBeanCondition",         "message": "@ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) found no beans"      }    ]  }}

/configprops

{  "management.health.status.CONFIGURATION_PROPERTIES": {    "prefix": "management.health.status",     "properties": {      "order": null    }  },   "multipart.CONFIGURATION_PROPERTIES": {    "prefix": "multipart",     "properties": {      "enabled": false,       "maxRequestSize": "10Mb",       "location": null,       "fileSizeThreshold": "0",       "maxFileSize": "1Mb"    }  },   "environmentEndpoint": {    "prefix": "endpoints.env",     "properties": {      "id": "env",       "enabled": true,       "sensitive": true    }  }}

/beans

[  {    "context": "application:8080",     "parent": null,     "beans": [      {        "bean": "appMain",         "scope": "singleton",         "type": "com.xixicat.AppMain$$EnhancerBySprinGCGLIB$$29382b14",         "resource": "null",         "dependencies": [ ]      },       {        "bean": "videoInfoMapper",         "scope": "singleton",         "type": "com.xixicat.dao.VideoInfoMapper",         "resource": "file [/Users/xixicat/workspace/video-uber/target/classes/com/xixicat/dao/VideoInfoMapper.class]",         "dependencies": [          "sqlSessionFactory"        ]      }    ]  }]

/dump

[  {    "threadName": "Signal Dispatcher",     "threadId": 4,     "blockedTime": -1,     "blockedCount": 0,     "waitedTime": -1,     "waitedCount": 0,     "lockName": null,     "lockOwnerId": -1,     "lockOwnerName": null,     "inNative": false,     "suspended": false,     "threadState": "RUNNABLE",     "stackTrace": [ ],     "lockedMonitors": [ ],     "lockedSynchronizers": [ ],     "lockInfo": null  },   {    "threadName": "Reference Handler",     "threadId": 2,     "blockedTime": -1,     "blockedCount": 217,     "waitedTime": -1,     "waitedCount": 9,     "lockName": "java.lang.ref.Reference$Lock@45de945",     "lockOwnerId": -1,     "lockOwnerName": null,     "inNative": false,     "suspended": false,     "threadState": "WAITING",     "stackTrace": [      {        "methodName": "wait",         "fileName": "Object.java",         "lineNumber": -2,         "className": "java.lang.Object",         "nativeMethod": true      },       {        "methodName": "wait",         "fileName": "Object.java",         "lineNumber": 503,         "className": "java.lang.Object",         "nativeMethod": false      },       {        "methodName": "run",         "fileName": "Reference.java",         "lineNumber": 133,         "className": "java.lang.ref.Reference$ReferenceHandler",         "nativeMethod": false      }    ],     "lockedMonitors": [ ],     "lockedSynchronizers": [ ],     "lockInfo": {      "className": "java.lang.ref.Reference$Lock",       "identityHashCode": 73263429    }  }]

/env

{ profiles: [], server.ports: {  local.server.port: 8080 }, servletContextInitParams: {}, systemProperties: {  java.runtime.name: "Java(TM) SE Runtime Environment",   sun.boot.library.path: "/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib",   java.vm.version: "24.79-b02",   GopherProxySet: "false",   Maven.multiModuleProjectDirectory: "/Users/xixicat/workspace/video-uber",   java.vm.vendor: "oracle Corporation",   java.vendor.url: "http://java.oracle.com/",   guice.disable.misplaced.annotation.check: "true",   path.separator: ":",   java.vm.name: "Java HotSpot(TM) 64-Bit Server VM",   file.encoding.pkg: "sun.io",   user.country: "CN",   sun.java.launcher: "SUN_STANDARD",   sun.os.patch.level: "unknown",   PID: "763",   java.vm.specification.name: "Java Virtual Machine Specification",   user.dir: "/Users/xixicat/workspace/video-uber",   java.runtime.version: "1.7.0_79-b15",   java.awt.graphicsenv: "sun.awt.CGraphicsEnvironment",   java.endorsed.dirs: "/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/endorsed",   os.arch: "x86_64",   java.io.tmpdir: "/var/folders/tl/xkf4nr61033gd6lk5d3llz080000gn/T/",   line.separator: " ",   java.vm.specification.vendor: "Oracle Corporation",   os.name: "Mac OS X",   classworlds.conf: "/Users/xixicat/devtool/maven-3.3.3/bin/m2.conf",   sun.jnu.encoding: "UTF-8",   spring.beaninfo.ignore: "true",   java.library.path: "/Users/xixicat/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.",   java.specification.name: "Java PlatfORM api Specification",   java.class.version: "51.0",   sun.management.compiler: "HotSpot 64-Bit Tiered Compilers",   os.version: "10.10.5",   user.home: "/Users/xixicat",   user.timezone: "Asia/Shanghai",   java.awt.printerjob: "sun.lwawt.macosx.CPrinterJob",   file.encoding: "UTF-8",   java.specification.version: "1.7",   java.class.path: "/Users/xixicat/devtool/maven-3.3.3/boot/plexus-classworlds-2.5.2.jar",   user.name: "xixicat",   java.vm.specification.version: "1.7",   sun.java.command: "org.codehaus.plexus.classworlds.launcher.Launcher spring-boot:run",   java.home: "/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre",   sun.arch.data.model: "64",   user.language: "zh",   java.specification.vendor: "Oracle Corporation",   awt.toolkit: "sun.lwawt.macosx.LWCToolkit",   java.vm.info: "mixed mode",   java.version: "1.7.0_79",   java.ext.dirs: "/Users/xixicat/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java",   sun.boot.class.path: "/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/classes",   java.awt.headless: "true",   java.vendor: "Oracle Corporation",   maven.home: "/Users/xixicat/devtool/maven-3.3.3",   file.separator: "/",   LOG_EXCEPTION_CONVERSION_Word: "%wEx",   java.vendor.url.bug: "http://bugreport.sun.com/bugreport/",   sun.io.unicode.encoding: "UnicodeBig",   sun.cpu.endian: "little",   sun.cpu.isalist: "" }, systemEnvironment: {  TERM: "xterm-256color",  ZSH: "/Users/xixicat/.oh-my-zsh",  GVM_BROKER_SERVICE: "http://release.gvm.io",  GRIFFON_HOME: "/Users/xixicat/.gvm/griffon/current",  JAVA_MAIN_CLASS_763: "org.codehaus.plexus.classworlds.launcher.Launcher",  JAVA_HOME: "/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home",  SHLVL: "1",  MAVEN_CMD_LINE_ARGS: " spring-boot:run",  __CF_USER_TEXT_ENCODING: "0x1F5:0x19:0x34",  GROOVY_HOME: "/Users/xixicat/.gvm/groovy/current",  XPC_FLAGS: "0x0",  GVM_INIT: "true",  JBAKE_HOME: "/Users/xixicat/.gvm/jbake/current",  PWD: "/Users/xixicat/workspace/video-uber",  GVM_DIR: "/Users/xixicat/.gvm",  GVM_VERSION: "2.4.3",  MAVEN_PROJECTBASEDIR: "/Users/xixicat/workspace/video-uber",  LOGNAME: "xixicat",  ssh_AUTH_SOCK: "/private/tmp/com.apple.launchd.93xr1duECQ/Listeners",  SPRINGBOOT_HOME: "/Users/xixicat/.gvm/springboot/current",  GAIDEN_HOME: "/Users/xixicat/.gvm/gaiden/current",  LAZYBONES_HOME: "/Users/xixicat/.gvm/lazybones/current",  OLDPWD: "/Users/xixicat/workspace/video-uber",  shell: "/bin/zsh",  JBOSSFORGE_HOME: "/Users/xixicat/.gvm/jbossforge/current",  LC_CTYPE: "zh_CN.UTF-8",  TMPDIR: "/var/folders/tl/xkf4nr61033gd6lk5d3llz080000gn/T/",  GVM_SERVICE: "http://api.gvmtool.net",  GVM_PLATFORM: "Darwin",  CLASSPATH: ".:/Users/xixicat/.m2/repository/co/paralleluniverse/quasar-core/0.7.2/quasar-core-0.7.2.jar",  GLIDE_HOME: "/Users/xixicat/.gvm/glide/current",  PATH: "/Users/xixicat/.gvm/vertx/current/bin:/Users/xixicat/.gvm/springboot/current/bin:/Users/xixicat/.gvm/lazybones/current/bin:/Users/xixicat/.gvm/jbossforge/current/bin:/Users/xixicat/.gvm/jbake/current/bin:/Users/xixicat/.gvm/groovyserv/current/bin:/Users/xixicat/.gvm/groovy/current/bin:/Users/xixicat/.gvm/griffon/current/bin:/Users/xixicat/.gvm/grails/current/bin:/Users/xixicat/.gvm/gradle/current/bin:/Users/xixicat/.gvm/glide/current/bin:/Users/xixicat/.gvm/gaiden/current/bin:/Users/xixicat/.gvm/crash/current/bin:/Users/xixicat/.gvm/asciidoctorj/current/bin:/Users/xixicat/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/git/bin:/Users/xixicat/devtool/maven-3.3.3/bin:/Users/xixicat/devtool/gradle-2.6/bin:/Users/xixicat/devtool/Android-sdk/platform-tools",  GRADLE_HOME: "/Users/xixicat/.gvm/gradle/current",  GROOVYSERV_HOME: "/Users/xixicat/.gvm/groovyserv/current",  GRAILS_HOME: "/Users/xixicat/.gvm/grails/current",  USER: "xixicat",  LESS: "-R",  PAGER: "less",  HOME: "/Users/xixicat",  CRASH_HOME: "/Users/xixicat/.gvm/crash/current",  XPC_SERVICE_NAME: "0",  VERTX_HOME: "/Users/xixicat/.gvm/vertx/current",  GVM_BROADCAST_SERVICE: "http://cast.gvm.io",  Apple_PubSub_Socket_Render: "/private/tmp/com.apple.launchd.y6fNwP8Sk6/Render",  LSCOLORS: "Gxfxcxdxbxegedabagacad",  ASCIIDOCTORJ_HOME: "/Users/xixicat/.gvm/asciidoctorj/current" }, applicationConfig: [classpath: /application.properties]: {  pool.acquireIncrement: "1",  pool.minPoolSize: "5",  pool.initialPoolSize: "1",  database.username: "root",  pool.maxIdleTime: "60",  database.url: "jdbc:mysql://127.0.0.1:3307/video_uber?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull",  spring.jackson.dateFormat: "yyyy-MM-dd'T'HH:mm:ss",  database.slave.username: "root",  spring.jackson.serialization.write - dates - as - timestamps: "false",  pool.idleTimeout: "30000",  database.slave.url: "jdbc:Mysql://127.0.0.1:3307/demo?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull",  server.port: "8080",  database.slave.password: "******",  database.password: "******",  database.driverClassName: "com.mysql.jdbc.Driver",  pool.maxPoolSize: "50",  database.dataSourceClassName: "com.mysql.jdbc.jdbc2.optional.MysqlDataSource" }}

/health

{ status: "UP", diskSpace: {  status: "UP",  total: 249779191808,  free: 193741590528,  threshold: 10485760 }, db: {  status: "UP",  database: "MySQL",  hello: 1 }}

/info

需要自己在application.properties里头添加信息,比如

info: contact:  email: xixicat@gmail.com  phone: 0755-82890987

然后请求就可以出来了

{ "contact": {   "phone": "0755-82890987",   "email": "xixicat@gmail.com" }}

/mappings

   {    {     [/metrics || /metrics.JSON], methods = [GET], produces = [application / json]    }: {     bean: "endpointHandlerMapping",     method: "public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()"    }, {     [/beans || /beans.json], methods = [GET], produces = [application / json]    }: {     bean: "endpointHandlerMapping",     method: "public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()"    }, {     [/health || /health.json], produces = [application / json]    }: {     bean: "endpointHandlerMapping",     method: "public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(java.security.Principal)"    }, {     [/info || /info.json], methods = [GET], produces = [application / json]    }: {     bean: "endpointHandlerMapping",     method: "public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()"    }, {     [/trace || /trace.json], methods = [GET], produces = [application / json]    }: {     bean: "endpointHandlerMapping",     method: "public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()"    }, {     [/autoconfig || /autoconfig.json], methods = [GET], produces = [application / json]    }: {     bean: "endpointHandlerMapping",     method: "public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()"    }   }

/metrics

{mem: 499404,mem.free: 257591,processors: 8,instance.uptime: 4284997,uptime: 4294909,systemload.average: 1.84521484375,heap.committed: 437248,heap.init: 262144,heap.used: 179656,heap: 3728384,nonheap.committed: 62848,nonheap.init: 24000,nonheap.used: 62156,nonheap: 133120,threads.peak: 18,threads.daemon: 6,threads.totalStarted: 176,threads: 16,classes: 10294,classes.loaded: 10294,classes.unloaded: 0,gc.ps_scavenge.count: 11,gc.ps_scavenge.time: 405,gc.ps_marksweep.count: 0,gc.ps_marksweep.time: 0,datasource.primary.active: 0,datasource.primary.usage: 0,counter.status.200.autoconfig: 1,counter.status.200.beans: 1,counter.status.200.configprops: 1,counter.status.200.dump: 1,counter.status.200.env: 1,counter.status.200.health: 1,counter.status.200.info: 1,counter.status.200.mappings: 1,gauge.response.autoconfig: 81,gauge.response.beans: 15,gauge.response.configprops: 105,gauge.response.dump: 76,gauge.response.env: 4,gauge.response.health: 43,gauge.response.info: 1,gauge.response.mappings: 4}

/shutdown

要真正生效,得配置文件开启

endpoints.shutdown.enabled: true

/trace

记录最近100个请求的信息

[{ "timestamp": 1452955704922, "info": {  "method": "GET",  "path": "/metrics",  "headers": {   "request": {    "Accept - Encoding": "gzip, deflate, sdch",     "Upgrade - Insecure - Requests": "1",     "Accept - Language": "zh-CN,zh;q=0.8,en;q=0.6",     "User - Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWEBKit/537.36 (Khtml, like Gecko) Chrome/47.0.2526.111 Safari/537.36",     "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,**;q=0.8",     "Connection": "keep-alive",     "Host": "localhost:8080"   },   "response": {    "Content - Type": "application/json; charset=UTF-8",     "X - Application - Context": "application:8080",     "Date": "Sat, 16 Jan 2016 13:38:09 GMT",     "status": "200"   }  } }}]

看完上述内容,你们对Actuator如何在SpringBoot中使用有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网精选频道,感谢大家的支持。

--结束END--

本文标题: Actuator如何在SpringBoot中使用

本文链接: https://lsjlt.com/news/221411.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • Actuator如何在SpringBoot中使用
    今天就跟大家聊聊有关Actuator如何在SpringBoot中使用,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。Spring Boot有四大神器,分别是auto-configura...
    99+
    2023-05-30
    springboot actuator
  • SpringBoot中如何对actuator进行关闭
    目录SpringBoot对actuator进行关闭SpringBoot actuator知识梳理Actuator端点整理总结SpringBoot对actuator进行关闭 mana...
    99+
    2023-03-09
    SpringBoot actuator SpringBoot actuator关闭 actuator关闭
  • 如何解决SpringBoot Actuator潜在的OOM问题
    这篇文章主要介绍如何解决SpringBoot Actuator潜在的OOM问题,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!此问题背景产生于近期需要上线的一个功能的埋点;主要表现就是在应用启动之后的一段时间...
    99+
    2023-06-21
  • 如何在SpringBoot中使用Swagger2
    如何在SpringBoot中使用Swagger2?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。引入依赖<dependency>   ...
    99+
    2023-06-14
  • Logback如何在Springboot中使用
    Logback如何在Springboot中使用?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。一、导入依赖普通项目<dependency>  &n...
    99+
    2023-06-15
  • filter如何在springboot中使用
    filter如何在springboot中使用?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。一、在spring的应用中我们存在两种过滤的用法,一种是拦截器、另外一种当然是过滤器。...
    99+
    2023-05-30
    springboot filter
  • SpringBoot Actuator埋点和监控及简单使用
    目录1. 数据埋点2. Micrometer2.1 简单使用2.2 命名规范3. SpringBoot Actuator3.1 添加依赖3.2 基础配置3.3 查看可消费的端点3.4...
    99+
    2024-04-02
  • 在SpringBoot中如何使用拦截器
    本篇文章为大家展示了在SpringBoot中如何使用拦截器,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。自定义自己的拦截类,拦截类需要继承HandlerInterceptor接口并实现这个接口的方法...
    99+
    2023-05-31
    springboot 拦截器
  • Thymeleaf方法如何在SpringBoot中使用
    Thymeleaf方法如何在SpringBoot中使用?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。ThymeleafThymeleaf是最近SpringBoot推荐支持的模板...
    99+
    2023-05-31
    springboot thymeleaf
  • 如何在springboot项目中使用 swagger
    这篇文章将为大家详细讲解有关如何在springboot项目中使用 swagger,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。1、pom.xml引入了两个jar。<dependency...
    99+
    2023-05-31
    swagger springboot
  • 如何在Spring Boot中使用 Actuator实现一个监控端点功能
    这篇文章将为大家详细讲解有关如何在Spring Boot中使用 Actuator实现一个监控端点功能,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。在Spring Boot的众多Starter...
    99+
    2023-05-31
    springboot actuator
  • 如何在Springboot中使用RedisUtils工具类
    如何在Springboot中使用RedisUtils工具类?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。SpringBoot整合Redis引入Redis依赖 &l...
    99+
    2023-06-15
  • Junit如何在SpringBoot Web项目中使用
    这篇文章将为大家详细讲解有关Junit如何在SpringBoot Web项目中使用,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。1、SpringBoot Web项目中中如何使用Junit创建...
    99+
    2023-05-31
    springboot junit
  • PageHelper在springboot+mybatis框架中如何使用
    这篇文章主要介绍“PageHelper在springboot+mybatis框架中如何使用”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“PageHelper在springboot+mybatis框架...
    99+
    2023-07-05
  • SpringBoot Admin 如何实现Actuator端点可视化监控
    目录SpringBoot Admin 实现Actuator端点可视化监控简介Spring Boot Admin ServerSpring Boot Admin Client启动客户端...
    99+
    2024-04-02
  • 如何在SpringBoot中应用Swagger
    本篇文章给大家分享的是有关如何在SpringBoot中应用Swagger,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。springboot是什么springboot一种全新的编...
    99+
    2023-06-15
  • SpringBoot中如何使用Aop
    这篇文章将为大家详细讲解有关SpringBoot中如何使用Aop,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。什么是aopAOP(Aspect OrientedProgramming):面向...
    99+
    2023-06-20
  • SpringBoot中如何使用Servlet
    今天小编给大家分享一下SpringBoot中如何使用Servlet的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。1.方式一(...
    99+
    2023-07-02
  • springboot中如何使用redis
    这篇文章将为大家详细讲解有关springboot中如何使用redis,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。正文很多时候,我们会在springboot中配置redis,但是就那么几个配置就配好了,没...
    99+
    2023-05-30
    springboot redis
  • 如何在SpringBoot项目中使用Oracle11g数据库
    在SpringBoot项目中使用Oracle11g数据库 具体步骤如下: 1:下载ojdbc6.jar ,随便放个英文目录位置就好 2:命令行下输入下行,注意最后-Dfile 为自己...
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作