• 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
    • gRPC
    • Hibernate
    • Micronaut
    • MicroProfile
    • Mule Enterprise Service Bus
    • OpenId Connect
    • Quarkus
    • Spring
      • Spring AI
      • Spring Authorization Server
      • Spring Boot
      • Spring Cloud
        • Spring Cloud Gateway
        • Spring Cloud GCP
        • Spring Cloud Netflix
        • Spring Cloud Stream
      • Spring Data JPA
      • Spring Data MongoDB
      • Spring Data R2DBC
      • Spring for Apache Kafka
      • Spring GraphQL
      • Spring Framework
      • Spring Integration
      • Spring MVC
      • Spring Security
      • Spring Session
      • Spring WebFlux
      • Spring WebSocket
    • Spark
    • Vaadin
  • Libraries
    • Apache
      • 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
    • Resilience4j
    • RxJava
  • Testing
    • Mockito
    • PowerMock
    • Selenium
    • Testcontainers
  • Open Source
    • Apache ActiveMQ
    • Apache APISIX
    • Apache Kafka
    • Consul
    • Debezium
    • Distributed Application Runtime
    • Grafana
    • Keycloak
    • Prometheus
    • RabbitMQ
    • Redis
    • SonarQube
  • DevOps
    • Cloud Foundry
    • Cloud Provider
      • Google Cloud Platform
    • Docker
    • Helm
    • Kubernetes
    • Jenkins
    • Nexus Repository Manager
    • OpenShift
  • Tool
    • Apache Ant
    • Apache Maven
    • CVS
    • Eclipse
    • FTP
    • IntelliJ
    • Git
    • Nginx
    • OpenAPI
    • RAML
  • Database
    • Cassandra
    • 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

Page 52

Concurrency in Project Reactor with Scheduler

Concurrency in Project Reactor with Scheduler

8 years ago by Khanh NguyenProject Reactor

Usually, we write Reactive applications that will run on the main thread but there are cases where we need to use multithread. For example, after receiving an item from the Publisher, the Consumer needs to process something different from that data item. With that manipulation,… Read More

flatMap() method of Mono/Flux object in Project Reactor

flatMap() method of Mono/Flux object in Project Reactor

8 years ago by Khanh NguyenProject Reactor

Compare to the flatMap() method in the Java Stream object or the flatMap() method in the Optional object in Java, we can manipulate the Stream or Optional objects of the simpler objects, the flatMap() method of the Mono object or the Flux object in the… Read More

Initialize Mock object using @Mock annotation of Mockito

Initialize Mock object using @Mock annotation of Mockito

8 years ago by Khanh NguyenMockito

In the previous tutorial Overview about Mock in Unit Test, I introduced you all a way to mock an object using the Mockito class. Mockito also supports us another way to initialize the Mock object using @Mock annotation. How is it in details? Let’s find… Read More

Overview about Mock in Unit Test

Overview about Mock in Unit Test

8 years ago by Khanh NguyenMockito

Unit Test is a tool that helps us to ensure that the code we write, reflects what we want accurately. In the process of working with the Unit Test, one of the problems we often encounter is that our code will call the methods of… Read More

Introduction about DevTools in Spring Boot

Introduction about DevTools in Spring Boot

8 years ago by Khanh NguyenSpring Boot

DevTools is a set of Spring Boot tools that make it easy to develop our Spring Boot applications. Imagine: every time we change the code of an application, we usually have to restart the application to see the change, using Spring Boot DevTools we do… Read More

Using Thymeleaf in Spring Boot

Using Thymeleaf in Spring Boot

8 years ago by Khanh NguyenSpring Boot

In my previous post, I showed you how to use Thymeleaf in Spring MVC. Using Thymeleaf will be much simpler thanks to the Spring Boot mechanism. How is it in detail? In this tutorial, I will guide you on how to use Thymeleaf in Spring… Read More

Overview about Spring Data MongoDB

Overview about Spring Data MongoDB

8 years ago by Khanh NguyenSpring Data MongoDB

The spring-data-mongodb library of Spring, in addition to providing us with the MongoOperations interface makes it easy to manipulate MongoDB, which also provides us with the mechanism that a Spring Data project needs to do: minimize the repetitive code involved dealing with data management systems when… Read More

Spring framework and MongoDB

Spring framework and MongoDB

8 years ago by Khanh NguyenSpring Data MongoDB

In the previous tutorial, I introduced to you all the basic operations with MongoDB using Java. If your application is using Spring framework, make use of a Spring library for MongoDB to manipulate this database system. How is it in details? Let’s find out in… Read More

Consume Reactive Web Service using WebClient of Spring WebFlux

Consume Reactive Web Service using WebClient of Spring WebFlux

8 years ago by Khanh NguyenSpring WebFlux

WebClient is an interface, implementation is the DefaultWebClient object, introduced with Spring WebFlux that allows us to consume the Reactive Web Service. How to create a request and handle a response using the WebClient? Let’s find out in this tutorial. First, I will create a… Read More

Binding variables in URI request to method’s parameters using @PathVariable annotation in Spring MVC

Binding variables in URI request to method’s parameters using @PathVariable annotation in Spring MVC

8 years ago by Khanh NguyenSpring MVC

Usually, when we want to request specific information from a RESTful Web Service, we usually use requests like “/student/2” or “/product/5”, where 2 and 5 are the values that can be changed depending on demand. To construct such requests in Spring MVC, we need to… Read More

  • Previous
  • 1
  • …
  • 51
  • 52
  • 53
  • …
  • 79
  • Next

Spring Authorization Server Ebook

Search Google


Announcement

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

Most Viewed

  • Install Node.js on macOS (467,586)
  • Contact (76,195)
  • Push a local GIT repository into a remote GIT repository (66,464)
  • Ignore case sensitive for table name in JPA with Hibernate implementation (39,214)
  • Get base URL in Controller in Spring MVC and Spring Boot (38,443)
  • Implement OAuth Authorization Server using Spring Authorization Server (37,591)
  • Access HttpServletRequest and HttpServletResponse in Spring MVC controller (37,039)
  • mvnForum 0.0.4 released (31,445)
  • Some ways to initialize Optional object in Java (30,144)
  • Get access token using refresh token with Keycloak (29,667)

Recent Comments

  • dianlong on Implement OAuth Authorization Server using Spring Authorization Server
  • Khoan đẹp trai on Apache Maven
  • Raj on Generate JSON data using Java class annotated with JAXB annotation, using Jackson library
  • khoannh on Git
  • Maxi on Configure Web Origin in Keycloak

Links

  • Huong Dan Kotlin

Twitter

Follow @KhanhNguyenJ
  • Private Policy
  • Contact
Theme: GoMedia by ThemeJunkie. Back To Top