hi,各位好
我在自己实现一个controller框架的时候遇到一个问题,我想和spring mvc 一样利用注解来实现url mapping。但是前提是我必须在程序加载的时候必须要扫扫描到所有的自定义注解。然后进行url mapping的处理。
现在问题是我如何通过spring扫描指定package下的所有类,然后判断是不是有该注解进而去做相应的处理。
判断有没有注解什么的我都清楚,现在不清楚的就是如何通过spring来扫描指定package下的所有类,然后用自己的方法处理这些类。
多谢大家
阿神2017-04-18 09:48:44
已經找到方法了。我用的是spring-boot。寫一個類別繼承ApplicationListener
然後用event.getApplicationContext().getBeansWithAnnotation(TableBind.class);即可
多謝大家
PHPz2017-04-18 09:48:44
spring-boot 的話
在啟動類別中 注進去就好
例如:
@ComponentScan(basePackages = "customer.common") //這裡指定你要掃描的 controller
@SpringBootApplicationpublicpublic class CustMain
public static void main(String[] args){
SpringApplication.run(CustomerMain.class, args);
}
巴扎黑2017-04-18 09:48:44
其實最終的package 和類別 都是要儲存抽象化成檔案的,所以遍歷類別就變成了遍歷資料夾及檔案。
有個例子,可以看看
http://changhongbao.iteye.com...