Ideally, it would look much like this:
List props = objectMapper.getKnownProperties(MyPojo.class);
Alas, there is no such met
It's possible to ignore all annotations by using a dummy AnnotationIntrospector:
objectMapper.setAnnotationIntrospector(new AnnotationIntrospector(){ @Override public Version version() { return Version.unknownVersion(); } });