Inverted Index for each fields of a Document in Lucene?

Does Lucene creates inverted index for each field name in documents ? How can we search for a word which belongs to a particular field?

Yes.

Have a look at the QueryDSL and use a match query for example.

You can also search with a syntax like: _search?q=field:term

Thanks dadoonet!