Java tutorial
/** * (C) 2013-2014 Stephan Rauh http://www.beyondjava.net * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package de.beyondjava; import java.util.HashMap; import javax.faces.webapp.FacesServlet; import org.springframework.beans.factory.config.CustomScopeConfigurer; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration; import org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration; import org.springframework.boot.context.embedded.ServletListenerRegistrationBean; import org.springframework.boot.context.embedded.ServletRegistrationBean; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import com.sun.faces.config.ConfigureListener; import de.beyondjava.scope.ViewScope; @Configuration @ComponentScan @EnableAutoConfiguration public class Main { public static void main(String[] args) { ConfigurableApplicationContext context = SpringApplication.run(Main.class); } @Bean public static ViewScope viewScope() { return new ViewScope(); } /** * Allows the use of @Scope("view") on Spring @Component, @Service and @Controller * beans */ @Bean public static CustomScopeConfigurer scopeConfigurer() { CustomScopeConfigurer configurer = new CustomScopeConfigurer(); HashMap<String, Object> hashMap = new HashMap<String, Object>(); hashMap.put("view", viewScope()); configurer.setScopes(hashMap); return configurer; } /* * Below sets up the Faces Servlet for Spring Boot */ @Bean public FacesServlet facesServlet() { return new FacesServlet(); } @Bean public ServletRegistrationBean facesServletRegistration() { ServletRegistrationBean registration = new ServletRegistrationBean(facesServlet(), "*.xhtml"); registration.setName("FacesServlet"); return registration; } @Bean public ServletListenerRegistrationBean<ConfigureListener> jsfConfigureListener() { return new ServletListenerRegistrationBean<ConfigureListener>(new ConfigureListener()); } }