Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. package com.javaxp;
  2.  
  3. import org.springframework.stereotype.Service;
  4.  
  5. @Service
  6. public class HelloWorld {
  7.  
  8. public String sayHello(String name) {
  9. return "Hello "+name+"!";
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement