Skip to content

Instantly share code, notes, and snippets.

@altfatterz
Created December 7, 2014 21:30
Show Gist options
  • Save altfatterz/cabebe33272fad8b47bf to your computer and use it in GitHub Desktop.
Save altfatterz/cabebe33272fad8b47bf to your computer and use it in GitHub Desktop.
@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