it’s my swagger Config file Student Controller StudentDTO class My Repository Myapplication class application.properties pom.xml When I run this application everything looks fine but I can’t see the POST/PUT/or DELETE. I try to many things I find from Internet but it doesn’t work. I new on t…
Tag: swagger-ui
SWAGGER – Fetch error v2/apidocs undefined
My swagger was working fine with this code. I wanted to add Authorize option in swagger page. So I did this config. From the time I added this new configurations I am getting this error. I have added the v2/api-docs in my security web ignore & http disble configurations already. My swagger dependencies: p…
Swagger/Openapi – How to document imported modules in a Spring boot project?
I have an authentication module which is imported inside our projects to provide authentication related APIs. AppConfig.java I’ve configured Swagger/OpenAPI in my projects and I wish to find a way to manage these imported endpoints: Specifically, I wish to set an order on the Example object’s fiel…
.antMatchers(“/swagger-ui/**”).permitAll() error 405
I am impemeting swagger 3 in my APIREST but wne I try to access to this link http://localhost:8080/swagger-ui/, a 405 error shows up. This is the code in my ConfigClass: And this is the dependency in the POM.XML: Can someboyde help me, please? Answer You might be doing a PUT call for GET operation Please chec…
Swagger is not working in Spring boot framework [closed]
Closed. This question needs debugging details. It is not currently accepting answers. Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question. Closed 12 months ago. Improve this question It …
Getting error while configuring Swagger-ui with spring reactive
While integrating swagger-ui with a reactive spring project generated using JHipster 7.1.0 for Java 11. I added the below dependencies. The application has below dependencies of swagger POM dependencies Apart from that we added a configuration SwaggerConfig.java Please share your feedback or inputs if you hav…
How adding Authorize Button to swagger-ui in java EE application
I have a java EE application and I want to add swagger-ui to document my java REST API. my Swagger-ui it works but I want to add the Authorize Button to swagger-ui in my java EE application thnak you this is my pom.xml Application.java Answer I would strongly recommend OpenAPI Specification to comprehend API …
OpenAPI @RequestBody variables of type Map are not populated
I’ve a simple POST API where the @RequestBody contains a variable of type HashMap. The problem is that the variable “myMap” is never populated. Swagger UI shows the entry field correctly, with corresponding default values. I also added the a static block in the Configuration file, otherwise …
How to use Bearer or Apikey keywords automatically onswagger java
I am trying to make some security configurations in my SwaggerConfiguration class. My purpose is sending scheme keyword with authentication key like or It is possible on ASP.NET Core but I can only achieve this in Java like this: What shall I use for my Docket security scheme instead of ApiKey? Answer You can…
How to handle header field with swagger in a java project?
I want to add header parameters to swagger ui so that the user can pass these values also. Could someone guide on what the java code for this would look like. I am using springfox-swagger2 and springfox-swagger-ui version 2.9.x (There are other post of SOF that describe about adding these through swagger edit…