IT Log

Record various IT issues and difficulties.

Spring Boot 3 Integration with Swagger 3 Encountered ‘Type javax.servlet.http.HttpServletRequest Not Present’ Error


Table of Contents

Error Details

Error Causes

Solution Methods

Dependencies Introduction

Configuration Information Update 

Create File

Access


Error Details

Error Causes

Version mismatch between SpringBoot3 and Swagger3

Solution Methods

Use springdoc instead of springfox, specific steps as follows:

Introduce Dependencies

Add the following dependencies in the pom.xml file:

Modify Configuration Information

Add the following content in application.yml:

Create a File

Create a SwaggerConfig.java file and add the following content:

Access

Start the project and access 127.0.0.1:20000/swagger-ui/index.html

If you see the following interface, it means you have been successful!!!


, , , , , , , , ,

10 responses to “Spring Boot 3 Integration with Swagger 3 Encountered ‘Type javax.servlet.http.HttpServletRequest Not Present’ Error”

  1. I highly recommend this article for anyone facing similar issues. The instructions are easy to follow and effective in fixing the problem.

  2. This article saved me a lot of time. By using springdoc dependencies and updating my project setup, I resolved the error successfully.

  3. Thanks to this article, I managed to integrate Swagger 3 with Spring Boot 3 without any issues. The solution was straightforward once I followed the steps.

  4. The article helped me understand that version mismatches can cause such errors. Switching to springdoc was the right choice!

  5. I appreciate the clear steps provided in this article. Updating the dependencies and configurations resolved the issue effectively.

  6. This was exactly what I needed. Using springdoc instead of springfox fixed the error, and the additional configurations were easy to implement.

  7. Thanks for the detailed guide. Adding the springdoc dependencies and updating the configuration files did the trick. I successfully integrated Swagger into my Spring Boot 3 app.

  8. Great article! The step-by-step instructions were clear, especially replacing springfox with springdoc. My project now runs without errors.

  9. The solution suggested by this article solved my issue with Spring Boot 3 and Swagger 3 integration. Using springdoc dependencies made everything work smoothly.

  10. This article was very helpful in resolving the ‘Type javax.servlet.http.HttpServletRequest Not Present’ error. I followed the steps and it worked perfectly after switching to springdoc. Thank you!

Leave a Reply