Hello,
When we want to assign a default value to a function, we usually use it as follows.
public List<Data> getAllData(int page=0, int size=100)
However, this is not the case with @RequestParam with SpringBoot.
public List<Data> getAllData…
Hello, If you get an error as in the title when you add swagger to your REST API project that you have done with the Spring Boot project. You can fix the problem by doing the following
It will be enough to add the following code into the application.…
Hello,If you get information like the title and your project is redirected to http://localhost:8080/login when it first runs, you can find the solution by changing the @SpringBootApplication annotation as follows.
@SpringBootApplication(exclude = {Se…