精编中文PDF版本下载地址:Flowable 6.6.0 应用程序.pdf
Flowable 6.6.0应用指南
- Flowable 应用程序概述
- Flowable UI应用安装
- Flowable UI应用配置(1)
- Flowable UI应用配置(2)
- Flowable身份管理应用程序
- Flowable 建模器应用程序(1)
- Flowable 建模器应用程序(2)
- Flowable 任务应用程序
- Flowable 管理应用程序(1)
- Flowable 管理应用程序(2)
- 国际化
- 生产就绪端点
-
自定义bean部署
Spring Boot中的生产就绪端点(Production ready endpoints)可用于应用程序。要想了解所有可用的端点,请查看执行器web api文档(Actuator Web API Documentation)。
默认情况下设置此属性:
# Expose all actuator endpoints to the web
# They are exposed, but only authenticated users can see /info and /health abd users with access-admin can see the others
management.endpoints.web.exposure.include=*
# Full health details should only be displayed when a user is authorized
management.endpoint.health.show-details=when_authorized
# Only users with role access-admin can access full health details
management.endpoint.health.roles=access-admin
安全性的配置方式是将info和health端点公开给所有经过身份验证的用户。只有具有access-admin权限的用户才能查看运行状况端点点的完整详细信息。如果你想改变的话,需要配置management.endpoint.health.show-details。所有其他端点都只对具有access-admin权限的用户进行访问。