blob: 9f133f740fed74e537ab6bc1a58a02c16d827d56 [file] [log] [blame]
package org.apache.struts2.cdi;
import javax.inject.Inject;
/**
* FooConsumer.
*/
public class FooConsumer {
@Inject
FooService fooService;
public void foo() {
System.out.println(fooService.getHello());
}
}