Bạn có thể xác định PersonUtility
class as spring bean thêm @component
trên lớp.
Sau đó, bạn có thể tự động phân phối trường trong BusinessRowMapper
@Component
public class BusinessRowMapper implements RowMapper<PersonDetails> {
@Autowired
private PersonUtility utils;
...
}