12 lines
214 B
Java
Raw Normal View History

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