播放框架中的自定义过滤器 class 位置

Custom Filters class location in play framework

在使用 Play Framework 2.4 开发的应用程序中,我需要使用过滤器来添加对 CORS 的支持。

该文档没有提到更改在其中查找 class 的包的方法。它只是说全局包是一个很好的位置。经过测试,似乎只有全局包被抓取了。

对于全局 class,是否有更改默认位置的方法?

提前致谢!

来自Play Documentation

If you want to have different filters in different environments, or would prefer not putting this class in the root package, you can configure where Play should find the class by setting play.http.filters in application.conf to the fully qualified class name of the class.

例如:

play.http.filters=com.example.MyFilters