如何用Java编写审计方法?
随着我的 java 应用程序复杂性的增加,我想编写审核方法以确保我做正确的事情。
我怎样才能在java中做到这一点? 谢谢
As my java application increases in complexity i want to write audit methods to make sure that i am doing the right thing.
How can i do it in java?
thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者也许使用 AspectJ 来审核某些方法调用?
您可以创建类似于过滤器的切入点,并在调用某些方法时捕获并获取有关参数的信息。这可能有利于审计。
方面 J
Or perhaps using AspectJ to audit certain method calls?
You can make pointcuts which are like filters and catch when certain methods are called and get information about the parameters. This could be good for auditing.
Aspect J
他可能意味着单元测试
检查此内容以开始: http://junit.sourceforge.net/
he probably means unit tests
check this to get started: http://junit.sourceforge.net/