All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hawt.springboot.PluginService Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
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