io.hawt.springboot.PluginService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hawtio-springboot Show documentation
Show all versions of hawtio-springboot Show documentation
Hawtio :: Spring Boot 2.x starter
package io.hawt.springboot;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class PluginService {
@Autowired
List registeredPlugins;
@RequestMapping("/plugin")
@ResponseBody
public List getPlugins() {
return registeredPlugins;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy