14 lines
265 B
Java
14 lines
265 B
Java
package com.baeldung.ctx1;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.baeldung.parent.IHomeService;
|
|
|
|
@Service
|
|
public class GreetingService implements IHomeService {
|
|
|
|
public String getGreeting() {
|
|
return "Greetings for the day";
|
|
}
|
|
}
|