React Frontend

Create React frontend to existing REST API

In this tutorial we will create a simple frontend using React. The backend that we will use is done with Spring Boot and it can be found from Heroku cloud server (https://carstockrest.herokuapp.com). Note, you should already have basic knowledge of React and REST API to be able to follow this... [Read More]

Spring Boot & DataTables

Tuning tables with jquery datatables

Jquery DataTables table plugin for jquery is really easy-to use tool for tuning your tables. It provides paging, sorting, searching and many more useful features. Usage of datatables with Spring Boot thymeleaf templates is straigthforward. You just have to link javascript and css libraries to your template and have a... [Read More]

React Native & Firebase

How to create simple Todo app with React Native and Firebase realtime database. Firebase offers you realtime NoSql database where items are saved as JSON objects. To get that you have to sign-in to Firebase and create project for your app . First you have to go to Firebase and... [Read More]

Spring Boot & JPA Auditing

Database auditing means logging the persistent entities. In the business applications we are often interested in who created the record and when. JPA auditing allows you to record who, what and when for each entity object. If you have existing Spring Boot JPA application you need following steps to enable... [Read More]

React.js + Spring Security

We will now secure our Spring Boot + React.js application by using Spring security. Follow the steps from older post to include user entity and Spring Security. Spring security configuration class will allow access to public folder because our bundled bundle.js file is there. All other endpoints needs authentication. Csrf... [Read More]