2013-04-24 17:02:07 +08:00
|
|
|
@Controller
|
|
|
|
class Example {
|
|
|
|
|
|
|
|
@Autowired
|
2021-01-01 22:15:38 +08:00
|
|
|
private MyService myService
|
2013-04-24 17:02:07 +08:00
|
|
|
|
|
|
|
@RequestMapping("/")
|
|
|
|
@ResponseBody
|
|
|
|
public String helloWorld() {
|
2021-01-01 22:15:38 +08:00
|
|
|
return myService.sayWorld()
|
2013-04-24 17:02:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Service
|
|
|
|
class MyService {
|
|
|
|
|
|
|
|
public String sayWorld() {
|
2021-01-01 22:15:38 +08:00
|
|
|
return "World!"
|
2013-04-24 17:02:07 +08:00
|
|
|
}
|
|
|
|
}
|