Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
kypo-adaptive-training
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MUNI-KYPO-CRP
backend-java
kypo-adaptive-training
Commits
10885fff
Commit
10885fff
authored
4 years ago
by
Dominik Pilar
Browse files
Options
Downloads
Patches
Plain Diff
Added elasticserch-documents dependency v1.0.16
parent
6e99a488
No related branches found
No related tags found
2 merge requests
!14
Resolve "Integrate the necessary parts of the kypo2-training"
,
!9
Resolve "Create missing service classes"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+5
-0
5 additions, 0 deletions
pom.xml
src/main/java/cz/muni/ics/kypo/training/adaptive/config/ObjectMapperConfigElasticsearch.java
+30
-0
30 additions, 0 deletions
...ning/adaptive/config/ObjectMapperConfigElasticsearch.java
with
35 additions
and
0 deletions
pom.xml
+
5
−
0
View file @
10885fff
...
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/cz/muni/ics/kypo/training/adaptive/config/ObjectMapperConfigElasticsearch.java
0 → 100644
+
30
−
0
View file @
10885fff
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
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment