jmapper-core icon indicating copy to clipboard operation
jmapper-core copied to clipboard

Elegance, high performance and robustness all in one java bean mapper

Results 38 jmapper-core issues
Sort by recently updated
recently updated
newest added

Bumps [xstream](https://github.com/x-stream/xstream) from 1.4.9 to 1.4.19. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.thoughtworks.xstream:xstream&package-manager=maven&previous-version=1.4.9&new-version=1.4.19)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: #...

dependencies

### Describe the bug We are creating new Rest Api using Quarkus, postgresql, JMapper and lombok. Jmapper throwing below error while calling api not sure why. Added lombok, jmapper-core details...

XStream's latest release 1.4.18 introduced breaking changes as > when unmarshalling with an XStream instance using the default blacklist of an uninitialized security framework. XStream is therefore now using a...

I wish to know if this project still maintained, last commit on May 22, 2017. Regards.

I am using JMapper with some POJO classes which has setter getter methods and it's working fine, when I removed all setters and getters and used Lombok for the same,...

I am trying to convert the flat source to the nested destination structure using a single jmapper instance with an xml configuration. My source class: ``` class Source { String...

Hi, I am new to JMapper, was trying to map two nested objects. Scenario: ----------------- ``` Source { Destination { User { Address { Address { String city; String city;...

How to map 1st element of a list of String to a String I want something like :- @JMap("${stringgs[1]}") private String field;

I was trying to do a recursive mapping on List of Strings to a List of Some other type. For an example take the following class definitions. Classes have getters...

Hi there I've started to use jmapper recently and I'm just wondering if it's possible to do what I'm trying to do ahah `------------ SRC FOLDER ------------------------------ ``` public class...