package es_02_index; import org.elasticsearch.action.admin.indices.open.OpenIndexRequest; import org.elasticsearch.action.admin.indices.open.OpenIndexResponse; import org.elasticsearch.client.RequestOptions; import org.elasticsearch.client.RestHighLevelClient; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import java.io.IOException; /** * 开启索引 * * @author : qinyingjie * @version : 2.2.0 * @date : 2023/5/13 11:14 */ @SpringBootTest @RunWith(SpringRunner.class) public class TestIndex_09_open { @Autowired private RestHighLevelClient client; //开启索引 @Test public void testOpenIndex() throws IOException { OpenIndexRequest request = new OpenIndexRequest("itheima_book"); OpenIndexResponse open = client.indices().open(request, RequestOptions.DEFAULT); boolean acknowledged = open.isAcknowledged(); System.out.println("acknowledged:" + acknowledged); } }