Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
ARSnova Backend
Commits
ff4c3cfb
Commit
ff4c3cfb
authored
7 years ago
by
Daniel Gerhardt
Browse files
Options
Downloads
Patches
Plain Diff
Only serialize explicitly annotated properties for CouchDB
parent
2c822151
Branches
Branches containing commit
1 merge request
!68
Migration to Ektorp and refactoring of the database layer
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/thm/arsnova/entities/serialization/CouchDbObjectMapperFactory.java
+3
-0
3 additions, 0 deletions
...va/entities/serialization/CouchDbObjectMapperFactory.java
with
3 additions
and
0 deletions
src/main/java/de/thm/arsnova/entities/serialization/CouchDbObjectMapperFactory.java
+
3
−
0
View file @
ff4c3cfb
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
*/
*/
package
de.thm.arsnova.entities.serialization
;
package
de.thm.arsnova.entities.serialization
;
import
com.fasterxml.jackson.databind.MapperFeature
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
org.ektorp.CouchDbConnector
;
import
org.ektorp.CouchDbConnector
;
import
org.ektorp.impl.StdObjectMapperFactory
;
import
org.ektorp.impl.StdObjectMapperFactory
;
...
@@ -24,6 +25,8 @@ import org.ektorp.impl.StdObjectMapperFactory;
...
@@ -24,6 +25,8 @@ import org.ektorp.impl.StdObjectMapperFactory;
public
class
CouchDbObjectMapperFactory
extends
StdObjectMapperFactory
{
public
class
CouchDbObjectMapperFactory
extends
StdObjectMapperFactory
{
public
ObjectMapper
createObjectMapper
(
CouchDbConnector
connector
)
{
public
ObjectMapper
createObjectMapper
(
CouchDbConnector
connector
)
{
ObjectMapper
om
=
super
.
createObjectMapper
(
connector
);
ObjectMapper
om
=
super
.
createObjectMapper
(
connector
);
om
.
configure
(
MapperFeature
.
DEFAULT_VIEW_INCLUSION
,
false
);
om
.
setConfig
(
om
.
getSerializationConfig
().
withView
(
View
.
Persistence
.
class
));
om
.
registerModule
(
new
CouchDbDocumentModule
());
om
.
registerModule
(
new
CouchDbDocumentModule
());
return
om
;
return
om
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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