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