5

upgraded elasticsearch to 7.17.3 and I encountered error Cannot resolve symbol 'XContentType'

Is 'XContentType' deprecated? What are its alternative?

jetpack
  • 169
  • 1
  • 9

2 Answers2

7

The import path changed:

import org.elasticsearch.common.xcontent.XContentType

import org.elasticsearch.xcontent.XContentType

conversation.16
  • 426
  • 2
  • 13
  • 28
2

'XContentType. JSON' has been replaced by 'XContentFactory.jsonBuilder()'

JIUYU
  • 36
  • 3