Skip to content

Instantly share code, notes, and snippets.

@AdamBien
Created January 7, 2021 19:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdamBien/a149e756cbdf591cd817a060a182d755 to your computer and use it in GitHub Desktop.
Save AdamBien/a149e756cbdf591cd817a060a182d755 to your computer and use it in GitHub Desktop.
83rdAirhacksQ&A.md

Ask questions and see you at February, 8th, 8.PM. CET: https://vimeo.com/event/154379

Also checkout recent episode:

82nd airhacks.tv

Please keep the questions Jakarta EE-stic. Means: as short and as concise as only possible. Feel free to ask several, shorter questions. Upcoming airhacks.tv events are also going to be announced at meetup.com/airhacks

@vanuatoo
Copy link

vanuatoo commented Feb 1, 2021

How do you implement database schema changes in CI pipeline

@FlorinAlexandru
Copy link

Hi Adam,

On DockerHub all the Jakarta EE servers have relative big images. For example:

jboss/wildfly:latest 714MB
open-liberty:latest 501MB
payara/server-full:latest 457MB

Is there are slimmer alternatives? One I can think of is Quarkus but I want to remain in the Jakarta EE servers world.
Is there a way to make current servers slimmer?

Note: when I say big images I compare with Spring Boot apps with custom JRE(created with jdeps and jlink) which are, based on my experience, around 250MB-300MB.

Thanks

@thehpi
Copy link

thehpi commented Feb 3, 2021

Hi Adam,

I use jaxrs and jpa to get data in/out of the db. I however have some entities that contain calculated values that should not exposed to the outside world.

I however cannot change the entity classes to e.g. add annotations (@XmlTransient?).

Currently I have a DTO which do not contain the sensitive fields and mappers to go from entity to dto but all this is cumbersome.

Is there a way to do this without the need for a DTO?

gr. Hans

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment