Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'org.springframework.boot.web.server.LocalServerPort' is deprecated

Since Spring boot 2.7.1, @LocalServerPort (in the package org.springframework.boot.web.server.LocalServerPort) is deprecated.

What can I use in stead of this annotation?

like image 856
Rajat Avatar asked Sep 11 '25 12:09

Rajat


1 Answers

Import the below package in your spring boot 2.7.1. use @LocalServerPort for the below-mentioned package.

org.springframework.boot.test.web.server

You can read about it here in the 2.7.18's Deprecated LocalServer Java API doc.
Alternative to use: org.springframework.boot.test.web.server.LocalServer Java API Doc

Once go through you query again for the SQL error.

like image 73
Puneet Kundliya Avatar answered Sep 13 '25 05:09

Puneet Kundliya