devxlogo

Define and Execute a Groovy Bean Inside a Spring Application Context

Define and Execute a Groovy Bean Inside a Spring Application Context

A quick example should suffice for defining and executing a Groovy Bean inside a Spring application context. Here’s a short Java interface:

package com.springandgroovy;     public interface HelloWorldService {              String sayHello();     }

And here’s the Groovy implementation:

import com.springandgroovy.HelloWorldService;  class HelloWorldServiceImpl implements HelloWorldService {     String name     String sayHello()     {        "Hello $name. Welcome to Scripting in Groovy."     }   }

The Spring application context is:

                    

Finally, here’s an execution example:

HelloWorldService service = (HelloWorldService) context.getBean(   "helloWorldService");   System.out.println(service.sayHello());
See also  How to Create and Deploy QR Codes Online: A Comprehensive Guide
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist