Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhiguo.Chen committed Nov 25, 2015
1 parent ed52091 commit 4710da0
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ public class IndexController {
private DubboMonitorService dubboMonitorService;

@RequestMapping(method = RequestMethod.GET)
public String home() {
return "index";
}

@RequestMapping(value = "index", method = RequestMethod.GET)
public String index() {
return "index";
}
Expand Down

0 comments on commit 4710da0

Please sign in to comment.