com.formkiq.server.config.DevConfig Maven / Gradle / Ivy
package com.formkiq.server.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import org.springframework.context.annotation.PropertySource;
import org.springframework.mail.MailSender;
/**
* Local Config.
*
*/
@Configuration
@Profile("dev")
@PropertySource("classpath:/dev.properties")
public class DevConfig {
/**
* @return MailSender
*/
@Bean
public MailSender mailSender() {
return new LoggerMailSender();
}
}