Tutorial by Examples: boot

datepicker.component.html <div (clickOutside)="onClickedOutside($event)" (blur)="onClickedOutside($event)"> <div class="input-group date" [ngClass]="{'disabled-icon': disabledDatePicker == false }"> <input (change)="cha...
In this example i will show how to formulate an rest controller to get and post data to the database using JPA with the most ease and least code. In this example we will refer to the data table named buyerRequirement . BuyingRequirement.java @Entity @Table(name = "BUYINGREQUIREMENTS&q...
In order to use bootstrap, there are 2 cases. The electron app is connected to internet The electron app is not connected to internet For electron apps that are connected to internet, we can just make use of CDN links for bootstrap and include that in our html files. The problem comes when w...
In this example we are going to implement spring-data-elasticsearch project to store POJO in elasticsearch. We will see a sample maven project which does the followings: Insert a Greeting(id, username, message) item on elasticsearch. Get All Greeting items which have been inserted. Update a Gr...
In this example we are going to see a maven based spring boot application which integrates spring-data-elasticsearch. Here, we will do the followings and see the respective code segments. Insert a Greeting(id, username, message) item on elasticsearch. Get all items from elasticsearch Update a s...

Page 4 of 4