在play framework 2.x
中,在Action
内的每个Controller
方法中添加日志记录支持的最佳方法是什么?写一个扩展/子类Action
或其他东西?
答案 0 :(得分:0)
您可以使用ActionBuilder
创建LoggingAction
(例如:http://www.playframework.com/documentation/2.2.x/ScalaActionsComposition)。
但是,由于您说“每个Action
”,我假设您要记录每个请求。最简单的方法是使用过滤器。他们在文档http://www.playframework.com/documentation/2.2.0/ScalaHttpFilters
LoggingFilter