次の 2 つの問題を解決するには:
1. 単一の JAR パッケージ アプリケーションがログを参照する必要がある場合、ログを参照するためにサーバーにリモート アクセスしてログインするのは比較的面倒です。
2. 本番環境 BUGを解決するには一時的にログレベルを変更する必要があり、サービスの再起動では解決できません。そこでアクチュエーターの一部を利用して解決しました。 2つの問題。 最初にアクチュエータの依存関係を POM ファイルに導入します:<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <version>${spring-boot.version}</version> </dependency>構成ファイルで構成します:
management.endpoints.web.base-path=/actuator management.endpoints.web.exposure.include=logfile,loggers management.endpoint.health.show-details=always logging.file.name=logs/EL-3KJ/EL-3KJ.logその後、http://localhost:8085/actuator に直接アクセスできます。
次の結果が得られます:
{"_links":{"self"{"href":"http://localhost:8085/actuator"," templated":false },
"ログファイル: "{"href":"http://localhost:8085/actuator/logfile","templated":false},"loggers":{"href":"http ://localhost: 8085/actuator/loggers","template":false},"loggers-name":{"href":"http://localhost:8085/actuator/loggers/{name}","template ":true}} }
<TabPane label="接口日志" name="name3"> 级别: <RadioGroup v-model="loglevel" type="button" size="small" @on- change="lvChange()"> <Radio label="ERROR"></Radio> <Radio label="INFO"></Radio> <Radio label="DEBUG"></Radio> </RadioGroup> <br/><br/> 文件:<a :href="logfileurl" rel="external nofollow" target="_blank" > 查看</a> </TabPane> this.logfileurl = res.dataApi+"actuator/logfile"; this.loglevelurl = res.dataApi+"actuator/loggers/root"; getLogLevel(){ this.ajax_get({ url: this.loglevelurl, params: {}, }).then((res) => { this.loglevel=res.configuredLevel }); }, lvChange(){ this.changeLogLevel(this.loglevel) }, changeLogLevel(level){ this.ajax_post({ url: this.tenant.dataApi + "actuator/loggers/root", params: {'configuredLevel':level}, }).then((res) => { this.spinShow = false; if (!res.code) { this.$Notice.success({ title:'更改日志级别为'+level, desc:res.msg }); } else { this.$Notice.error({ title:'更改日志级别失败', desc:res.msg }); } }); }
最終的な効果は次のとおりです:
以上がSpring Boot Actuator管理ログの実装方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。