Spring Boot Actuator项目公开了一个审计框架。我正在尝试使用它,虽然一般来说这是一个非常合理的实现我发现了一个问题。
AuditEventRepository
接口有以下方法:
List find(String principal, Date after)
它在InMemoryAuditEventRepository
中实施。问题是第二个参数(Date after
)似乎被忽略了。
我是对的吗?
我正在使用Spring-Boot-1.2.0.RELEASE