Ce contenu n'est pas disponible dans la langue sélectionnée.
Chapter 2. Accessing the Fuse Console for Spring Boot standalone
To access the Fuse Console for a standalone Fuse Spring Boot distribution:
Add hawtio-springboot to your Fuse application’s
pom.xmlfile dependencies.<dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-springboot</artifactId> </dependency>
<dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-springboot</artifactId> </dependency>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note that you do not need to specify the version because it is provided by the Maven BOM.
Edit the
src/main/resources/application.propertiesfile and set endpoints.jolokia.sensitive to false:endpoints.jolokia.sensitive = false
endpoints.jolokia.sensitive = falseCopy to Clipboard Copied! Toggle word wrap Toggle overflow Run the Fuse application by using the following command:
mvn spring-boot:run
mvn spring-boot:runCopy to Clipboard Copied! Toggle word wrap Toggle overflow To determine the port number for the Fuse Console URL, obtain the management.port value by looking at the value set in the
src/main/resources/application.propertiesfile. For example:management.port = 10001
management.port = 10001Copy to Clipboard Copied! Toggle word wrap Toggle overflow To open the Fuse Console in a browser, use the following URL syntax where nnnnn is the value of the management.port property:
http://localhost:nnnnn/hawtio/index.htmlFor example:
http://localhost:10001/hawtio/index.html