|
You are here |
jamesward.com | ||
| | | | |
mydeveloperplanet.com
|
|
| | | | | 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
|
|
| | | | | 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
|
|
| | | | | 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
|
|
| | | 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. ... | ||