• Private Policy
  • Contact
Follow me
  • English
  • Tiếng Việt
Huong Dan Java
  • Java
    • Java Core
    • Java Lambda Expression
    • Java Fundamentals
    • Java Stream
    • Java Tools
    • Java XML
  • Jakarta EE
    • CDI
    • JSON Binding
    • JSON Processing
    • MVC
    • Persistence
    • RESTful Web Services
    • Servlet
  • Frameworks
    • Apache Camel
    • Apache Struts
    • Javalin
    • Hibernate
    • Micronaut
    • MicroProfile
    • Mule Enterprise Service Bus
    • OpenId Connect
    • Quarkus
    • Spring
      • Spring Authorization Server
      • Spring Boot
      • Spring Cloud Gateway
      • Spring Cloud GCP
      • Spring Cloud Netflix
      • Spring Data JPA
      • Spring Data MongoDB
      • Spring Data R2DBC
      • Spring GraphQL
      • Spring Framework
      • Spring GraphQL
      • Spring Integration
      • Spring MVC
      • Spring Security
      • Spring Session
      • Spring WebFlux
      • Spring WebSocket
    • Spark
    • Vaadin
  • Libraries
    • Apache
      • Apache ActiveMQ
      • Apache Commons IO
      • Apache FreeMarker
      • Apache HTTP Components
      • Apache Ignite
      • Apache Tiles
    • AspectJ
    • Database Migration
    • EhCache
    • GraphQL
    • Jackson
    • JSch
    • Log4J
    • Project Lombok
    • Project Reactor
    • Quartz Scheduler
    • Thymeleaf
    • RxJava
  • Testing
    • Mockito
    • PowerMock
    • Selenium
  • Open Source
    • Apache Kafka
    • Keycloak
    • RabbitMQ
    • Redis
    • SonarQube
  • DevOps
    • Cloud Foundry
    • Docker
    • Helm
    • Kubernetes
    • Jenkins
    • Nexus Repository Manager
    • OpenShift
  • Tool
    • Apache Ant
    • Apache Maven
    • CVS
    • Eclipse
    • FTP
    • IntelliJ
    • Git
    • Nginx
    • OpenAPI
    • RAML
  • Database
    • MongoDB
    • MySQL
    • PostgreSQL
  • Server Runtime
    • Apache Tomcat
    • JBoss WildFly
  • Others
    • JavaScript
    • Huong Dan Java Logger
    • Algorithm
    • mvnForum
    • Questions Management
      • Questions Management – Stage 1
      • Questions Management – Stage 2
  • Books

Spring Boot

RESTful API documentation with springdoc-openapi library in Spring Boot application

RESTful API documentation with springdoc-openapi library in Spring Boot application

3 months ago by Khanh NguyenOpenAPI

In the previous tutorial, I showed you how to use the Springfox library to create RESTful API documentation according to OpenAPI specification in Spring Boot applications. But Springfox has been out of date for a long time and the springdoc-openapi library is updated continuously and… Read More

Configure JSP views in InternalResourceViewResolver with Spring Boot JAR file

Configure JSP views in InternalResourceViewResolver with Spring Boot JAR file

2 years ago by Khanh NguyenSpring Boot

Important: recommend you to use JSP views with WAR file, JAR file will have many problems, one of which I have encountered is deploying JAR file using Docker Container… The following tutorial is only for someone who must use JSP views with JAR files in… Read More

Using EclipseLink to replace Hibernate in Spring Data JPA Starter

Using EclipseLink to replace Hibernate in Spring Data JPA Starter

2 years ago by Khanh NguyenSpring Boot

By default, when you use Spring Data JPA Starter in your Spring project, Hibernate will be the default implementation used. However, in some cases, you may not want to use this default implementation. For example, I’m converting this open source openid-connect https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server from Spring MVC… Read More

Internationalization in Spring Boot

Internationalization in Spring Boot

2 years ago by Khanh NguyenSpring Boot

In the previous tutorial, I showed you how to implement internationalization in Spring MVC applications. For Spring Boot applications, how to implement internationalization? I will guide you in this tutorial! First, I will create a new Spring Boot project: with Spring Web dependency: as an… Read More

Get base URL in Controller in Spring MVC and Spring Boot

Get base URL in Controller in Spring MVC and Spring Boot

2 years ago by Khanh NguyenSpring Boot

When working with web applications using Spring MVC or Spring Boot, sometimes we will need to get the base URL information of the application to do something. Base URL here is https://huongdanjava.com or https://google.com. To do this, you can use Spring’s ServletUriComponentsBuilder class. In detail,… Read More

Write Unit Test for Spring Boot application

Write Unit Test for Spring Boot application

4 years ago by Khanh NguyenSpring Boot

When working with applications that use Spring Boot, you will need to write Unit Test for your code. In this tutorial, I will show you how to write Unit Test for the Spring Boot application! First, I will create a simple Spring Boot application for… Read More

Introduction to Spring Boot Actuator

Introduction to Spring Boot Actuator

5 years ago by Khanh NguyenSpring Boot

The Spring Boot Actuator is a Spring tool that allows us to monitor our application on a production environment without any code at all. It will expose the information about the application, its status, how the data relates to the application, etc. How is it… Read More

Using Apache Tiles in Spring Boot

Using Apache Tiles in Spring Boot

5 years ago by Khanh NguyenApache Tiles

In my previous tutorial, I showed you how to use Apache Tiles in Spring MVC. I want to write another tutorial on how to use Apache Tiles in Spring Boot to give you an overview of the differences between these two uses. That is the… Read More

Install Spring Boot Command Line Interface on Ubuntu

Install Spring Boot Command Line Interface on Ubuntu

5 years ago by Khanh NguyenSpring Boot

In the previous tutorial, I have shown you how to install Spring Boot CLI on Windows. This tutorial, I will guide you to install it on Ubuntu! First, download the latest version of the Spring Boot CLI for Ubuntu at http://repo.spring.io/release/org/springframework/boot/spring-boot-cli/. Currently the latest version… Read More

Configure database in Spring Boot project using JPA Starter dependency

Configure database in Spring Boot project using JPA Starter dependency

5 years ago by Khanh NguyenSpring Boot

To use JPA in any project, we need to declare its configuration including the database it will use, the username and password for it to connect to, etc. With the Spring Boot project, this is no exception if you use JPA Starter dependency. So in… Read More

  • 1
  • 2
  • 3
  • Next

Spring Authorization Server Ebook

Search Google


Announcement

  • Contact Form error should be fixed(20 July, 2021)

Most Viewed

  • Install Node.js on macOS (354,890)
  • Contact (68,121)
  • Push a local GIT repository into a remote GIT repository (48,285)
  • Ignore case sensitive for table name in JPA with Hibernate implementation (34,391)
  • Access HttpServletRequest and HttpServletResponse in Spring MVC controller (30,820)
  • Implement OAuth Authorization Server using Spring Authorization Server (28,047)
  • Some ways to initialize Optional object in Java (27,024)
  • Get base URL in Controller in Spring MVC and Spring Boot (23,868)
  • Get access token using refresh token with Keycloak (21,625)
  • Archive the artifacts in Jenkins (18,984)

Recent Comments

  • Khanh Nguyen on Integrate Prometheus with OpenTelemetry using Prometheus exporter
  • Abhi on Integrate Prometheus with OpenTelemetry using Prometheus exporter
  • Odesto on Configure expiration time for access tokens in Spring Authorization Server
  • Khanh Nguyen on Implement OAuth Authorization Server using Spring Authorization Server
  • Gordon Ko on Implement OAuth Authorization Server using Spring Authorization Server

Links

  • Huong Dan Kotlin

Twitter

Follow @KhanhNguyenJ
  • Private Policy
  • Contact
Theme: GoMedia by ThemeJunkie. Back To Top
Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.

Refresh