Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Spring Petclinic | 6,295 | 2 days ago | 8 | apache-2.0 | CSS | |||||
A sample Spring-based application | ||||||||||
Spring | 2,752 | 304,322 | 122 | a month ago | 55 | December 10, 2021 | 117 | mit | Ruby | |
Rails application preloader | ||||||||||
Hawtio | 1,343 | 33 | 21 | 8 days ago | 117 | January 30, 2020 | 34 | apache-2.0 | Java | |
Hawtio web console helps you manage your JVM stuff and stay cool! | ||||||||||
Springboot | 569 | 3 years ago | 4 | |||||||
Spring Boot chinese document. Spring Boot 2.1.5 中文文档 | ||||||||||
Bootiful Microservices | 511 | 5 years ago | 5 | apache-2.0 | Shell | |||||
Niubi Job | 318 | 6 | 1 | 3 years ago | 10 | August 13, 2016 | 14 | apache-2.0 | Java | |
一个高可用的,专门针对定时任务的分布式任务调度框架 | ||||||||||
Spring Boot Angular | 302 | a year ago | 3 | TypeScript | ||||||
Quick tutorial on how to create a Spring Boot app with Angular front end using Maven and modern front end tooling | ||||||||||
Spring Cloud Cli | 148 | 1 | 10 months ago | 23 | May 27, 2022 | 36 | apache-2.0 | Java | ||
Spring Cloud CLI features | ||||||||||
Angular Reddit Clone | 148 | 3 months ago | 16 | TypeScript | ||||||
This repository contains source code for the Reddit Clone application built in Angular, the backend is built using Spring boot - https://github.com/SaiUpadhyayula/spring-reddit-clone | ||||||||||
Springboot Plus | 128 | 5 years ago | bsd-3-clause | Java | ||||||
Hawtio is a lightweight and modular Web console for managing Java applications.
Hawtio has lots of plugins such as: Apache ActiveMQ "Classic," Apache Camel, JMX, OSGi, Logs, Spring Boot, and Diagnostics. You can dynamically extend Hawtio with your own plugins or automatically discover plugins inside the JVM.
The only server side dependency (other than the static HTML/CSS/JS/images) is the excellent Jolokia library which has small footprint (around 300KB) and is available as a JVM agent, or comes embedded as a servlet inside the hawtio-default.war
or can be deployed as an OSGi bundle.
For more details and other containers, see Get Started Guide.
You can start up Hawtio on your machine using the hawtio-app executable JAR.
Once you have downloaded it, just run this from the command line:
java -jar hawtio-app-2.17.0.jar
Attaching the Hawtio console to your Spring Boot app is simple.
Add io.hawt:hawtio-springboot
to the dependencies in pom.xml
:
<dependency>
<groupId>io.hawt</groupId>
<artifactId>hawtio-springboot</artifactId>
<version>2.17.0</version>
</dependency>
Enable the Hawtio and Jolokia endpoints by adding the following line in application.properties
:
management.endpoints.web.exposure.include=hawtio,jolokia
spring.jmx.enabled=true
Now you should be able to run Hawtio in your Spring Boot app as follows:
mvn spring-boot:run
Opening http://localhost:8080/actuator/hawtio should show the Hawtio console.
See Spring Boot example for a working example app.
If you are using Apache Karaf 4.x and above:
feature:repo-add hawtio 2.17.0
feature:install hawtio
This will install all the features required for Hawtio. The Hawtio console can then be viewed at http://localhost:8181/hawtio.
Karaf versions prior to 4.x are not supported.
We love contributions! Here are the resources on how to get you involved in Hawtio development.
Check out the GitHub issues for finding issues to work on.
Hawtio is licensed under Apache License, Version 2.0.