How can we pass multiple docs as an input in UIMA?
UIMA obtains documents e.g. from a database through a Collection Reader.
In your case this means that you have to implement your own Collection
Reader
which can access your specific database. The UIMA examples contains a
sample
which shows how to implement a Collection Reader which reads documents
from the file system. Have a look at the code.
You can find more about Collection Reader in the UIMA documentation:
http://incubator.apache.org/uima/downloads/releaseDocs/2.2.2-incubating/docs/html/tutorials_and_users_guides/tutorials_and_users_guides.html#ugr.tug.cpe.collection_reader.developing
Hope this helps,
Jörn