Marcelo Shima

Results 573 comments of Marcelo Shima

It’s a patch operation. The validation should be performed after merging with the entity.

Yes, I think UserRepository was moved, PersistentTokenRepository still missing.

Angular will send back whatever the backend returned. JHipster 6 has flatten relationships, JHipster 7 doesn’t. Non DTO will always return the entire entity. DTO on the other hand is...

> If you have a relationship with a `User` entity, then it opens up a security hole and undoes the effect of the special purpose public get all users endpoint....

I suppose a `@JsonIncludeProperty({ "", "" })` in dto relationships should fix this issue. @hokrobert can you contribute with a PR?

Entity mappers filter the value by default: ``` @Named("mapsIdChildEntityWithDTOId") @BeanMapping(ignoreByDefault = true) @Mapping(target = "id", source = "id") MapsIdChildEntityWithDTO toDtoMapsIdChildEntityWithDTOId(MapsIdChildEntityWithDTOEntity mapsIdChildEntityWithDTOEntity); ``` But the serialized json includes fields with null...

I understand your point, but I don't think we should add support to this. - It's not so simple as adding support to jdl. The generators use those types to...

The consul container doesn't have access to the service using the published address. The address should use the domain `host.docker.internal` so it can be accessible by containers. My guess is...