12 lines
212 B
Java
12 lines
212 B
Java
package com.baeldung.parent;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class HomeService implements IHomeService {
|
|
|
|
public String getGreeting() {
|
|
return "Welcome User";
|
|
}
|
|
}
|