22 lines
254 B
Groovy
22 lines
254 B
Groovy
@Controller
|
|
class Example {
|
|
|
|
@Autowired
|
|
private MyService myService
|
|
|
|
@RequestMapping("/")
|
|
@ResponseBody
|
|
public String helloWorld() {
|
|
return myService.sayWorld()
|
|
}
|
|
|
|
}
|
|
|
|
@Service
|
|
class MyService {
|
|
|
|
public String sayWorld() {
|
|
return "World!"
|
|
}
|
|
}
|