具体想实现注解里面的重复编写,想法如下:
我在http://localhost/manage/ 下面有n个页面
http://localhost/manage/user
http://localhost/manage/city
http://localhost/manage/config
我现在的方法不能实现,方法:
父类:
@At("/manage")
public class BaseModule() {}
子类
@At("/user")
public class UserModule() {}
现在只能访问:http://localhost/user
不能访问:http://localhost/manage/user