Try explicitly filling in the type parameter – assuming actual is a List<YourPojo>, try calling:
assertThat(actual, hasItem(Matchers.<YourPojo>hasProperty("id", equalTo(1L))));
Try explicitly filling in the type parameter – assuming actual is a List<YourPojo>, try calling:
assertThat(actual, hasItem(Matchers.<YourPojo>hasProperty("id", equalTo(1L))));