Free Online Whiteboard Base64 Converter JSON Utility SmartTool PDF

Category: Javaskool Category

Spring Security Kerberos Example 0

Spring Security Kerberos Example

Spring Security Kerberos is an extension of Spring Security for application developers to Kerberos concepts with Spring. Spring Security Kerberos Example How to create a spring security project If you want to create your...

Spring Security Introduction and Features 0

Spring Security Introduction and Features

Spring Security is a powerful and highly customizable authentication and access-control framework. It is the de-facto standard for securing Spring-based applications. Spring Security is a framework that focuses on providing both authentication and authorization...

How to get a reference to currently active dataSource in Spring Boot 0

How to get a reference to currently active dataSource in Spring Boot

Defining DataSource in Spring package com.javaskool.config; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.Properties; import java.util.stream.Collectors; import javax.persistence.EntityManagerFactory; import javax.sql.DataSource; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; //import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration;...

Database Initialization in Spring Boot 1

Database Initialization in Spring Boot

An SQL database can be initialized in different ways depending on what your stack is. Of course, you can also do it manually, provided the database is a separate process. Initialize a Database Using...

How to load Initial Data with Spring Boot 0

How to load Initial Data with Spring Boot

Spring Boot makes it really easy to manage our database changes in an easy way. If we leave the default configuration, it’ll search for entities in our packages and create the respective tables automatically....

Building an Application with Spring Boot 0

Building an Application with Spring Boot

Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”. If you want to create your own Spring Boot-based project, visit Spring Initializr, fill in your project...

SVG – Scalable Vector Graphics 0

SVG – Scalable Vector Graphics

SVG Introduction SVG is a short form of Scalable Vector Graphics. It is a graphic format in which the shapes are specified in XML. The XML is then rendered by an SVG viewer. Most...