All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.web.reactive.support.AbstractServletHttpHandlerAdapterInitializer Maven / Gradle / Ivy

/*
 * Copyright 2002-2018 the original author or authors.
 *
 * Licensed 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.springframework.web.reactive.support;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRegistration;

import org.springframework.http.server.reactive.HttpHandler;
import org.springframework.http.server.reactive.ServletHttpHandlerAdapter;
import org.springframework.util.Assert;
import org.springframework.web.WebApplicationInitializer;

/**
 * Base class for {@link org.springframework.web.WebApplicationInitializer}
 * implementations that register a {@link ServletHttpHandlerAdapter} in the
 * servlet context.
 *
 * @author Arjen Poutsma
 * @since 5.0
 * @deprecated in favor of
 * {@link org.springframework.web.server.adapter.AbstractReactiveWebInitializer
 * AbstractReactiveWebInitializer}
 */
@Deprecated
public abstract class AbstractServletHttpHandlerAdapterInitializer implements WebApplicationInitializer {

	/**
	 * The default servlet name. Can be customized by overriding {@link #getServletName}.
	 */
	public static final String DEFAULT_SERVLET_NAME = "http-handler-adapter";


	@Override
	public void onStartup(ServletContext servletContext) throws ServletException {
		registerHandlerAdapter(servletContext);
	}

	/**
	 * Register a {@link ServletHttpHandlerAdapter} against the given servlet context.
	 * 

This method will create a {@code HttpHandler} using {@link #createHttpHandler()}, * and use it to create a {@code ServletHttpHandlerAdapter} with the name returned * by {@link #getServletName()}, and mapping it to the patterns returned from * {@link #getServletMappings()}. *

Further customization can be achieved by overriding * {@link #customizeRegistration(ServletRegistration.Dynamic)} or * {@link #createServlet(HttpHandler)}. * @param servletContext the context to register the servlet with */ protected void registerHandlerAdapter(ServletContext servletContext) { String servletName = getServletName(); Assert.hasLength(servletName, "getServletName() must not return null or empty"); HttpHandler httpHandler = createHttpHandler(); Assert.notNull(httpHandler, "createHttpHandler() must not return null"); ServletHttpHandlerAdapter servlet = createServlet(httpHandler); Assert.notNull(servlet, "createServlet(HttpHandler) must not return null"); ServletRegistration.Dynamic registration = servletContext.addServlet(servletName, servlet); if (registration == null) { throw new IllegalStateException("Failed to register servlet with name '" + servletName + "'. " + "Check if there is another servlet registered under the same name."); } registration.setLoadOnStartup(1); registration.addMapping(getServletMappings()); registration.setAsyncSupported(true); customizeRegistration(registration); } /** * Return the name under which the {@link ServletHttpHandlerAdapter} will be registered. * Defaults to {@link #DEFAULT_SERVLET_NAME}. * @see #registerHandlerAdapter(ServletContext) */ protected String getServletName() { return DEFAULT_SERVLET_NAME; } /** * Create the {@link HttpHandler}. */ protected abstract HttpHandler createHttpHandler(); /** * Create a {@link ServletHttpHandlerAdapter} with the specified . *

The default implementation returns a {@code ServletHttpHandlerAdapter} * with the provided {@code httpHandler}. */ protected ServletHttpHandlerAdapter createServlet(HttpHandler httpHandler) { return new ServletHttpHandlerAdapter(httpHandler); } /** * Specify the servlet mapping(s) for the {@code ServletHttpHandlerAdapter}: * for example {@code "/"}, {@code "/app"}, etc. * @see #registerHandlerAdapter(ServletContext) */ protected abstract String[] getServletMappings(); /** * Optionally perform further registration customization once * {@link #registerHandlerAdapter(ServletContext)} has completed. * @param registration the {@code DispatcherServlet} registration to be customized * @see #registerHandlerAdapter(ServletContext) */ protected void customizeRegistration(ServletRegistration.Dynamic registration) { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy