Giriş
Şu satırı dahil ederiz.
Projenin şöyle olması gerekir.
Şöyle yaparız.
Şu satırı dahil ederiz.
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
Spring Boot projesine ait bir arayüz. @Configuration veya @SpringBootApplication anotasyonuna sahip bir sınıfın @Bean ile işaretli metodu ile kullanılır.Projenin şöyle olması gerekir.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
setPort metoduŞöyle yaparız.
@Configuration
public class ServletConfig {
@Bean
public EmbeddedServletContainerCustomizer containerCustomizer() {
return (container -> {
container.setPort(8012);
});
}
}
Hiç yorum yok:
Yorum Gönder