Fügen Sie Folgendes zu src> main> resources> application.yml hinzu.
application.yml
server:
port : 8081
Führen Sie aus und überprüfen Sie, ob sich der Standardport 8080 geändert hat.
$ curl http://localhost:8080/
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0
curl: (7) Failed to connect to localhost port 8080: Connection refused
$ curl http://localhost:8081/
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 13 100 13 0 0 149 0 --:--:-- --:--:-- --:--:-- 149
Hello World!
Schreiben Sie im Fall von src> main> resources> application.properties wie folgt.
application.properties
server.port=8081
Recommended Posts