Created
December 7, 2014 21:30
-
-
Save altfatterz/cabebe33272fad8b47bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component | |
@ConfigurationProperties(locations = "classpath:mail.properties", ignoreUnknownFields = false, prefix = "mail") | |
public class MailProperties { | |
public static class Smtp { | |
private boolean auth; | |
private boolean starttlsEnable; | |
} | |
@NotBlank | |
private String host; | |
private int port; | |
private String from; | |
private String username; | |
private String password; | |
@NotNull | |
private Smtp smtp; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment