Git Product home page Git Product logo

Comments (4)

johnmcclean avatar johnmcclean commented on August 14, 2024

@jeancarlozapata Thanks! You can use the Groovy as keyword to coerce the Groovy closure to a Java 8 Functional Interface (see http://www.infoq.com/articles/groovy-to-Java-8).

e.g.

   Function f =  { a ->a+1 } as Function

I haven't run this code, but have made use of this technique in the past.

@Rest
@Path("/status")
class StatusApp {

    static void main(String[] args){
        Module init = { -> "status-app"} as Module
        def app = new MicroserverApp(init)
        // also tried like this
        //def app = new MicroserverApp({ -> "status-app" })
        app.run()
    }

    @GET
    @Produces("text/plain")
    @Path("/ping")
    String respondToPing() {
        return "pong!"
    }
}

from micro-server.

jeancarlozapata avatar jeancarlozapata commented on August 14, 2024

Hi @johnmcclean-aol, thanks for your response. Been busy this week. Will try to test it over the weekend (or just will move the example to Java 😉). Anyway, I will post the results and/or solution here.

from micro-server.

johnmcclean avatar johnmcclean commented on August 14, 2024

We need to supply the current class to MicroserverApp to determine the base class for Spring package scanning (if none is supplied MicroserverApp tries to figure this out from the StackTrace - which is probably different for Groovy). So this get's things a bit futher

@Rest
@Path("/status")
@Microserver
class StatusGroovy {

    static void main(String[] args){

        def app = new MicroserverApp(StatusGroovy,{ -> "status-app"} as Module).start()

    }

    @GET
    @Produces("text/plain")
    @Path("/ping")
    public String respondToPing() {
        return "pong!"
    }
}

from micro-server.

johnmcclean avatar johnmcclean commented on August 14, 2024

In fact that works for me now.

from micro-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.