Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找测量 Spring Batch 读取、处理和写入操作执行时间的最佳方法。在元数据中,有关于整个步骤的信息,但没有关于每个动作的信息。
我正在考虑听众,但这是正确的解决方案吗?
感谢您的所有回答!
ItemReadListener、ItemProcessListener和ItemWriteListener接口的 beforeXXX 和 afterXXX 方法是衡量步内性能的正确方法。
只需在 beforeXXX() 初始化计时器并在 afterXXX() 方法输出结果。