mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
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!"
|
|
}
|
|
}
|