Spring Batch reader using generics
问题 I'm just new in the spring architecture and I am wondering if it is possible to use a generic T (o what you want) in an ItemStreamReader . Something like this: public class Reader implements ItemStreamReader<T extends SomeClass>{ public T read() { ....... } public void open() { ....... } public void update() { ....... } public void close() { ....... } } So I pass to the reader various objects that extends SomeClass . 回答1: this should work: public class Reader<T extends SomeClass> implements