Complete the code to set the server port to 8080 in application.properties.
server.[1]=8080
The property server.port sets the port number where the Spring Boot app listens.
Complete the code to set the application name to 'MyApp' in application.properties.
spring.application.[1]=MyAppThe property spring.application.name defines the app's name used in logs and discovery.
Fix the error in the property key to enable debug logging for Spring MVC.
logging.level.[1]=DEBUGThe correct package for enabling debug logs for Spring MVC is org.springframework.webmvc.
Fill both blanks to configure a datasource URL and username in application.properties.
spring.datasource.[1]=jdbc:mysql://localhost:3306/mydb spring.datasource.[2]=user123
spring.datasource.url sets the database URL, and spring.datasource.username sets the DB user.
Fill all three blanks to set server port, context path, and enable HTTPS in application.properties.
server.[1]=8443 server.servlet.[2]=/app server.ssl.[3]=true
server.port sets the port, server.servlet.context-path sets the app path, and server.ssl.enabled enables HTTPS.