Skip to content
Snippets Groups Projects
Commit 10885fff authored by Dominik Pilar's avatar Dominik Pilar
Browse files

Added elasticserch-documents dependency v1.0.16

parent 6e99a488
No related branches found
No related tags found
2 merge requests!14Resolve "Integrate the necessary parts of the kypo2-training",!9Resolve "Create missing service classes"
......@@ -38,6 +38,11 @@
<artifactId>kypo2-security-commons</artifactId>
<version>1.0.40</version>
</dependency>
<dependency>
<groupId>cz.muni.ics.kypo</groupId>
<artifactId>kypo-elasticsearch-documents</artifactId>
<version>1.0.16</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
......
package cz.muni.csirt.kypo.elasticsearch.service.config;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.PropertyNamingStrategy;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* The type Object mapper config elasticsearch.
*/
@Configuration
public class ObjectMapperConfigElasticsearch {
/**
* Object mapper object mapper.
*
* @return the object mapper
*/
@Bean("objMapperForElasticsearch")
public ObjectMapper objectMapper() {
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE);
objectMapper.registerModule(new JavaTimeModule());
objectMapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
return objectMapper;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment