12 lines
212 B
Java
Raw Normal View History

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