io.github.autsia.crowly.config.MVCConfig.java Source code

Java tutorial

Introduction

Here is the source code for io.github.autsia.crowly.config.MVCConfig.java

Source

/*
 * Copyright 2014 Dmytro Titov
 *
 * 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 io.github.autsia.crowly.config;

import io.github.autsia.crowly.tiles.TilesExposingBeansView;
import io.github.autsia.crowly.tiles.TilesExposingBeansViewResolver;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.view.tiles3.TilesConfigurer;

/**
 * Created by Dmytro on 3/23/2014 at 14:51
 * Project: crowly
 */
@Configuration
@EnableWebMvc
public class MVCConfig extends WebMvcConfigurerAdapter {

    public static String SITE_NAME = "Crowly";

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
    }

    @Override
    public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
        configurer.enable();
    }

    @Bean
    public String siteName() {
        return SITE_NAME;
    }

    @Bean
    public TilesExposingBeansViewResolver viewResolver() {
        TilesExposingBeansViewResolver tilesExposingBeansViewResolver = new TilesExposingBeansViewResolver();
        tilesExposingBeansViewResolver.setViewClass(TilesExposingBeansView.class);
        tilesExposingBeansViewResolver.setExposedContextBeanNames(new String[] { "siteName" });
        return tilesExposingBeansViewResolver;
    }

    @Bean
    public TilesConfigurer tilesConfigurer() {
        TilesConfigurer tilesConfigurer = new TilesConfigurer();
        tilesConfigurer.setDefinitions("WEB-INF/tiles.xml");
        return tilesConfigurer;
    }

}