python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
My mapperImpl by mapstruct is not generating getters and setters
i would like to know why my mapperImpl generated by mapstruct isnt being generated with getters and setters.
I think that because of this, when i go make a GET request on postman it returns all null w...

user17154913
Votes: 0
Answers: 1
MapStruct: Map multiple sources from multiple objects to one target
I want to map the following classes
class Schedule {
ZoneId timezoneId;
List<AvailabilityRule> rules;
}
class AvailabilityRule {
long startEpoch;
long endEpoch;
}
to these clas...

duplex143
Votes: 0
Answers: 2
no setter methods in generated mapstruct implementation
I'm experimenting with mapstruct and follow this tutorial:
mapstruct tut
I have this entity:
@Entity
public class Company {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = ...
derstauner
Votes: 0
Answers: 1
maven compiler plugin conflict with kotlin maven plugin
I'm setting up kotlin to springboot project, for now I want to support both java and kotlin. My project also have lombok & mapstruct as normal.
When I build maven I got this issue:
Internal error...

uncle bob
Votes: 0
Answers: 0