org.apache.servicecomb.springboot.starter.servlet.RestServletInitializer Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.servicecomb.springboot.starter.servlet;
import java.io.IOException;
import java.net.ServerSocket;
import org.apache.servicecomb.transport.rest.servlet.ServletUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.web.server.AbstractConfigurableWebServerFactory;
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
import org.springframework.boot.web.servlet.ServletContextInitializer;
import org.springframework.core.env.Environment;
import jakarta.servlet.ServletContext;
import jakarta.servlet.ServletException;
public class RestServletInitializer
implements WebServerFactoryCustomizer, ServletContextInitializer {
private static final Logger LOGGER = LoggerFactory.getLogger(RestServletInitializer.class);
private AbstractConfigurableWebServerFactory factory = null;
private Environment environment;
@Autowired
public void setEnvironment(Environment environment) {
this.environment = environment;
}
@Override
public void customize(AbstractConfigurableWebServerFactory factory) {
this.factory = factory;
}
@Override
@SuppressWarnings("try")
public void onStartup(ServletContext servletContext) throws ServletException {
if (this.factory == null) {
// when running in external tomcat, WebServerFactoryCustomizer will not be available, but now tomcat
// is already listening and we can call ServletUtils.init directly.
ServletUtils.init(servletContext, environment);
return;
}
if (factory.getPort() == 0) {
LOGGER.warn(
"spring boot embedded web container listen port is 0, ServiceComb will not use container's port to handler REST request.");
return;
}
// when running in embedded tomcat, web container did not listen now. Call ServletUtils.init needs server is ready,
// so mock to listen, and then close.
try (ServerSocket ignored = new ServerSocket(factory.getPort(), 0, factory.getAddress())) {
ServletUtils.init(servletContext, environment);
} catch (IOException e) {
throw new ServletException(e);
}
}
}