Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.gdn.x.ui.config; import com.mongodb.Mongo; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.data.mongodb.core.MongoTemplate; import org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; import org.springframework.data.mongodb.repository.config.EnableMongoRepositories; import org.springframework.web.multipart.commons.CommonsMultipartResolver; import org.springframework.web.servlet.ViewResolver; 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.InternalResourceViewResolver; import org.springframework.web.servlet.view.JstlView; /** * * @author ifnu.b.fatkhan */ @Configuration @EnableWebMvc @ComponentScan(basePackages = "com.gdn.x.ui") @EnableMongoRepositories(basePackages = "com.gdn.x.ui.repository") public class ApplicationConfiguration extends WebMvcConfigurerAdapter { @Bean public ViewResolver viewResolver() { InternalResourceViewResolver viewResolver = new InternalResourceViewResolver(); viewResolver.setViewClass(JstlView.class); viewResolver.setPrefix("/WEB-INF/views/"); viewResolver.setSuffix(".jsp"); return viewResolver; } @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/js/**").addResourceLocations("resources/js/"); registry.addResourceHandler("/fonts/**").addResourceLocations("resources/fonts/"); registry.addResourceHandler("/css/**").addResourceLocations("resources/css/"); registry.addResourceHandler("/img/**").addResourceLocations("resources/img/"); registry.addResourceHandler("/images/**").addResourceLocations("resources/images/"); registry.addResourceHandler("/scss/**").addResourceLocations("resources/scss/"); registry.addResourceHandler("/plugins/**").addResourceLocations("resources/plugins/"); } @Bean(name = "multipartResolver") public CommonsMultipartResolver getCommonsMultipartResolver() { CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver(); multipartResolver.setMaxUploadSize(20971520); // 20MB multipartResolver.setMaxInMemorySize(1048576); // 1MB return multipartResolver; } @Bean public Mongo mongo() { return new Mongo("localhost"); } @Bean public MongoTemplate mongoTemplate() { return new MongoTemplate(mongo(), "tool_data"); } }