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

com.firefly.example.ioc.FooServiceImpl Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.example.ioc;

import com.firefly.annotation.Component;
import com.firefly.annotation.Inject;

/**
 * @author Pengtao Qiu
 */
@Component("fooService")
public class FooServiceImpl implements FooService {

    @Inject
    private HelloService helloService;

    @Override
    public void say(String message) {
        System.out.println(message);
        helloService.print();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy