Explore >> Select a destination


You are here

renato.athaydes.com
| | mydeveloperplanet.com
10.0 parsecs away

Travel
| | In this blog, you will learn how to setup a Maven multi-module project which consists out of a Spring Boot backend and a Vue.js frontend. The application itself will not be created, only the setup of the project is covered in this blog. Enjoy! 1. Introduction Many applications consist out of a backend and a...
| | blog.scottlogic.com
7.8 parsecs away

Travel
| | In most microservice architectures, there are many opportunities and temptations for sharing code. In this post I will give advice based on my experience on when it should be avoided and when code reuse is acceptable. The points will be illustrated with the help of an example Spring Boot project.
| | mydeveloperplanet.com
7.3 parsecs away

Travel
| | The blog discusses the implications of using "mvn install" on build servers, highlighting risks where feature branch artifacts may inadvertently mix with stable branches. It outlines differences between "mvn verify" and "mvn install," and suggests solutions, including using enhanced local repositories, to maintain build integrity across branches.
| | imalittletester.com
50.0 parsecs away

Travel
| When writing tests that require the generation of random strings, a very useful class can come in handy, namely RandomStringUtils from the Apache Commons Langs utilities library. It can be used for generating string that contain only letters, only numbers, both, these and other characters. Using the class in your project To use the RandomStringUtils...