()
| 12 | } |
| 13 | |
| 14 | func (this *FootprintController) Init() { |
| 15 | this.BaseController.Init() |
| 16 | |
| 17 | b := core.CONTEXT.GetBean(this.footprintDao) |
| 18 | if b, ok := b.(*FootprintDao); ok { |
| 19 | this.footprintDao = b |
| 20 | } |
| 21 | |
| 22 | b = core.CONTEXT.GetBean(this.footprintService) |
| 23 | if b, ok := b.(*FootprintService); ok { |
| 24 | this.footprintService = b |
| 25 | } |
| 26 | |
| 27 | } |
| 28 | |
| 29 | func (this *FootprintController) RegisterRoutes() map[string]func(writer http.ResponseWriter, request *http.Request) { |
| 30 |