Explore >> Select a destination


You are here

jamesward.com
| | mydeveloperplanet.com
2.3 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...
| | owehrens.com
2.5 parsecs away

Travel
| | I'm playing around with some web frameworks lately and to see what's in store with Spring 3 MVC (never did too much with it) I gave it a try to see how it handles Ajax. According to ajax simplification announcement it should be possible to get up and running in (almost) no time. We will do a simple web application which will show the current time via Ajax. The directory layout (using maven) should look like this: web.xml
| | initialcommit.com
1.9 parsecs away

Travel
| | Since Java 5, JAX-RS specification has been announced in order to support building REST web services according to the REST architectural pattern.
| | vladmihalcea.com
29.5 parsecs away

Travel
| Introduction As previously explained, the SINGLE_TABLE inheritance is the most efficient entity inheritance strategy. However, for JPQL query such as this one: Hibernate generates a SQL query which filters by the associated discriminator column (e.g. DTYPE by default): So, because we are filtering by the discriminator column, we might want to index it or include it to speed up queries. However, the default STRING DiscriminatorType expects a VARCHAR column that must hold the longest entity subclass name. ...