mwinteringham / restful-booker-platform

A SaaS platform used for various test automation training
http://www.automationintesting.com
GNU General Public License v3.0
128 stars 158 forks source link

Swagger UI pages yield 404 #254

Closed cdw-dina closed 4 months ago

cdw-dina commented 4 months ago

Both on local build and the https://automationintesting.online/ site as referenced by the book.

Local

Book Reference

mwinteringham commented 4 months ago

This is due to springdoc v1 not supporting spring boot 3. I need to update each service to use the following:

   <dependency>
      <groupId>org.springdoc</groupId>
      <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
      <version>2.6.0</version>
   </dependency>

Leaving as a to do note

mwinteringham commented 4 months ago

Dependencies have been updated. @cdw-dina if you download the latest code you should see the swagger docs now. I am deploying the change to the main site once the build has completed.

cdw-dina commented 4 months ago

They all look to be working on the https://automationintesting.online/ site which is great. I'm planning to do some casual lunch-and-learn presentations where this will feature. Thank you!