如何使用hawt.io与spring boot和嵌入式Jetty

时间:2015-03-06 15:53:33

标签: spring-boot embedded-jetty hawtio

我有一个Apache camel应用程序,它以包含Jetty服务器的'fat-jar'开头。 是否可以将hawt.io添加到jar中以便将hawt.io用于此应用程序?

我尝试用

添加hawt.io
<dependency>
    <groupId>io.hawt</groupId>
    <artifactId>hawtio-core</artifactId>
    <version>1.4.47</version>
</dependency>
<dependency>
    <groupId>io.hawt</groupId>
    <artifactId>hawtio-plugin-mbean</artifactId>
    <version>1.4.47</version>
</dependency>
<dependency>
    <groupId>io.hawt</groupId>
    <artifactId>hawtio-springboot</artifactId>
    <version>1.4.47</version>
</dependency>
<dependency>
    <groupId>io.hawt</groupId>
    <artifactId>hawtio-web</artifactId>
    <version>1.4.47</version>
    <type>war</type>
</dependency>

但是“/ localhost:[我的端口] / hawtio”没有响应。

1 个答案:

答案 0 :(得分:1)

你需要添加一些代码来告诉Jetty将hawtio-web WAR文件添加为jetty本身的上下文路径。

了解我们如何从hawtio embedded

中做到这一点