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

com.codingapi.springboot.framework.exception.ExceptionConfiguration Maven / Gradle / Ivy

There is a newer version: 3.3.12
Show newest version
package com.codingapi.springboot.framework.exception;

import org.springframework.context.MessageSource;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class ExceptionConfiguration {

    @Bean(initMethod = "init")
    public LocaleMessage exceptionLocaleMessage(MessageSource messageSource) {
        return new LocaleMessage(messageSource);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy