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

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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy