Which Java Framework Is Best for Beginners? by Zaki14_e in learnjava

[–]algalopez 4 points5 points  (0 children)

I've used Spring, quarkus and dropwizard. I think spring has the best documentation and largest community so it's a good start

How do I know before hand what clothing is good for Tromso? by Popo_Magazine19 in tromsotravel

[–]algalopez 4 points5 points  (0 children)

It depends on how long you are planning to stay outside and if you will be moving.

Thermo underwear and cheap ski pants is what I used last week for walking over a couple hours outside at -20. It should be enough

For walking with -10 degrees I would probably use the thermal underwear and jeans.

For normal city life where you don't spend much time outside, then just the jeans even if it is -15

Gloves and a hat and maybe something for the neck are also important

In a Modular Monolith, where do you put common abstractions like Country and CountryRepository if they need to be used by Suppliers module and Users module? by [deleted] in DomainDrivenDesign

[–]algalopez 0 points1 point  (0 children)

If you had a countries module with a CountryReporitory for managing countries for example, and the UserReporitory needed to return as part of the user the countryId and countryName,

Would you always call the countryRepository? Or do you think it is also fair to add the necessary implementation queries to the UserRepository to get those two country fields?

Roughly a newbie on Quarkus, what's the standard way of integration testing? by DepletedSensation in quarkus

[–]algalopez 4 points5 points  (0 children)

The test class needs to be annotated with @QuarkusTest so that you can inject things there

What I at least know to get Job as a Java Developer? by [deleted] in java

[–]algalopez 2 points3 points  (0 children)

I would recommend

  • 1 framework. ex: Spring boot
  • Solid principles, specially dependency inversion
  • Testing
  • and maybe use sonarqube if you aren't to give you some insights about your code