当前位置: 首页 > 知识库问答 >
问题:

如何让JavaMailSender在错误的邮件密码上不使应用程序上下文加载失败?

杨安歌
2023-03-14

我在Sring Boot应用程序中使用JavaMailSender,如果像密码这样的属性是错误的,以防止邮件网关中的日志记录,那么它不会自动连接Bean并且应用程序上下文无法加载。

Spring邮件属性:

spring.mail.host=smtp.gmail.com
spring.mail.port=465
spring.mail.protocol=smtp
spring.mail.username=xxx@gmail.com
spring.mail.password=xxx
spring.mail.from=xxx@gmail.com

属性由属性读取器加载:

public abstract class AbstractUserProperties implements ApplicationProperties {

    @Value("${" + PropertyNames.CONFIG_AUTH_TOKEN_PRIVATE_KEY + "}")
    private String authenticationTokenPrivateKey;

    @Value("${" + PropertyNames.CONFIG_MAIL_HOST + "}")
    private String host;

    @Value("${" + PropertyNames.CONFIG_MAIL_PORT + "}")
    private String port;

    @Value("${" + PropertyNames.CONFIG_MAIL_PROTOCOL + "}")
    private String protocol;

    @Value("${" + PropertyNames.CONFIG_MAIL_USERNAME + "}")
    private String username;

    @Value("${" + PropertyNames.CONFIG_MAIL_PASSWORD + "}")
    private String password;

    @Value("${" + PropertyNames.CONFIG_MAIL_FROM + "}")
    private String mailFrom;

    @Value("${" + PropertyNames.CONFIG_MAIL_TEST_CONNECTION + "}")
    private boolean mailTestConnection;

    @Value("${" + PropertyNames.CONFIG_MAILING_ENABLED + "}")
    private boolean mailingEnabled;

    public String getAuthenticationTokenPrivateKey() {
        return authenticationTokenPrivateKey;
    }

    @Override
    public String getHost() {
        return host;
    }

    @Override
    public String getPort() {
        return port;
    }

    @Override
    public String getProtocol() {
        return protocol;
    }

    @Override
    public String getUsername() {
        return username;
    }

    @Override
    public String getPassword() {
        return password;
    }

    @Override
    public String getMailFrom() {
        return mailFrom;
    }

    @Override
    public boolean getMailTestConnection() {
        return mailTestConnection;
    }

    @Override
    public boolean getMailingEnabled() {
        return mailingEnabled;
    }

}

如何拥有它,以便错误的邮件密码不会阻止应用程序启动?

依赖项:

<version>2.0.3.RELEASE</version>
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-mail</artifactId>
</dependency>

我在Spring Boot 2.0.3上。

下面是应用程序的邮件配置:

@Configuration
public class MailConfig {

    @Autowired
    private ApplicationProperties applicationProperties;

    @Bean
    public JavaMailSender javaMailSender() {
        String host = applicationProperties.getHost();
        String port = applicationProperties.getPort();
        String protocol = applicationProperties.getProtocol();
        String username = applicationProperties.getUsername();
        String password = applicationProperties.getPassword();
        if (!password.isEmpty() && !username.isEmpty() && !protocol.isEmpty() && !port.isEmpty() && !host.isEmpty()) {
            JavaMailSenderImpl javaMailSender = new JavaMailSenderImpl();
            javaMailSender.setHost(host);
            javaMailSender.setPort(Integer.parseInt(port));
            javaMailSender.setProtocol(protocol);
            javaMailSender.setUsername(username);
            javaMailSender.setPassword(password);
            javaMailSender.setJavaMailProperties(getMailProperties());
            return javaMailSender;
        } else {
            return null;
        }
    }

    @Bean
    public SimpleMailMessage simpleMailMessage() {
        SimpleMailMessage simpleMailMessage = new SimpleMailMessage();
        simpleMailMessage.setFrom(applicationProperties.getMailFrom());
        return simpleMailMessage;
    }

    private Properties getMailProperties() {
        Properties properties = new Properties();
        properties.setProperty("mail.smtp.auth", "true");
        properties.setProperty("mail.smtp.starttls.enable", "false");
        properties.setProperty("mail.smtp.quitwait", "false");
        properties.setProperty("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
        properties.setProperty("mail.smtp.socketFactory.fallback", "false");
        properties.setProperty("mail.debug", "true");
        return properties;
    }

}

更新:我已经在< code > application . properties 文件中放置了< code > spring . mail . test-connection = false 属性,控制台日志显示它已被复制:

[INFO] Copying 1 resource
[DEBUG] Copying file application.properties

我还删除了 MailConfig 类,以便默认使用 Spring 提供的类。但是,错误消息保持不变。作为旁注,我想知道如何在我自己的 Bean 配置中使用该属性,而不必使用默认的 Spring bean。

更新:我可以在我的配置bean中添加< code > mail . test-connection 属性,如下所示:

private Properties getMailProperties() {
    Properties properties = new Properties();
    properties.setProperty("mail.smtp.auth", "true");
    properties.setProperty("mail.smtp.starttls.enable", "false");
    properties.setProperty("mail.smtp.quitwait", "false");
    properties.setProperty("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
    properties.setProperty("mail.smtp.socketFactory.fallback", "false");
    properties.setProperty("mail.debug", "true");
    properties.setProperty("mail.test-connection", String.valueOf(applicationProperties.getMailTestConnection()));
    return properties;
}

@Bean
public JavaMailSender javaMailSender() {
    String host = applicationProperties.getHost();
    String port = applicationProperties.getPort();
    String protocol = applicationProperties.getProtocol();
    String username = applicationProperties.getUsername();
    String password = applicationProperties.getPassword();
    JavaMailSenderImpl javaMailSender = new JavaMailSenderImpl();
    javaMailSender.setHost(host);
    javaMailSender.setPort(Integer.parseInt(port));
    javaMailSender.setProtocol(protocol);
    javaMailSender.setUsername(username);
    javaMailSender.setPassword(password);
    javaMailSender.setJavaMailProperties(getMailProperties());
    return javaMailSender;
}

现在,即使没有提供密码,也没有检查连接,应用程序上下文也可以很好地加载。

共有1个答案

刁瀚昂
2023-03-14

可以将以下行添加到 application.properties 文件中,以便在应用程序启动时不测试邮件连接:

spring.mail.test连接=false

使用此配置,如果您第一次尝试发送邮件,并且例如您的密码不正确,则会检查您的邮件连接,并引发异常。

但我不确定你到底为什么要这样做:D

更新:如果您想知道Spring Boot是如何做到的,请查看MailSenderXYZAutoConfiguration类,它们使用以下代码测试连接:

/**
 * {@link EnableAutoConfiguration Auto configuration} for testing mail service
 * connectivity on startup.
 *
 * @author Eddú Meléndez
 * @author Stephane Nicoll
 * @since 1.3.0
 */
@Configuration
@AutoConfigureAfter(MailSenderAutoConfiguration.class)
@ConditionalOnProperty(prefix = "spring.mail", value = "test-connection")
@ConditionalOnSingleCandidate(JavaMailSenderImpl.class)
public class MailSenderValidatorAutoConfiguration {

    private final JavaMailSenderImpl mailSender;

    public MailSenderValidatorAutoConfiguration(JavaMailSenderImpl mailSender) {
        this.mailSender = mailSender;
    }

    @PostConstruct
    public void validateConnection() {
        try {
            this.mailSender.testConnection();
        }
        catch (MessagingException ex) {
            throw new IllegalStateException("Mail server is not available", ex);
        }
    }

}
 类似资料:
  • 我得到的错误是: 我试图更改上下文配置的位置,如下所示:

  • 我在我的Android应用程序中使用滑翔进行图像加载,以避免任何崩溃,我正在加载带有应用程序上下文的图像。这会对应用程序和内存的性能产生什么影响?

  • 我在我的src/test/resources路径中创建了一个application-integrationtest.yaml,所以我的测试是针对创建的docker TestContainer运行的。问题是没有加载我的application-integrationtest.yaml。 我正在运行一个SpringBoot2.x应用程序 原因:org.springframework.beans.Bean

  • 我正在处理一个Spring Boot应用程序,其中我使用该应用程序公开SOAP WebService。我在Spring boot应用程序中使用Apache CFX framework for SOAP impl。我正在使用基于注释的方法。 我在一个bean中的Spring Boot配置文件中设置应用程序上下文时遇到了问题。下面是我的代码。 配置文件如下所示。 现在我有了bean SOAPproce

  • 问题内容: 我想在加载Spring上下文后立即运行一些作业,但是我不知道该怎么做。 你有什么想法吗? 问题答案: 谢谢大家的答复。实际上,我错过了一个问题的细节,我想在加载应用程序上下文后立即运行Quartz Job。我尝试了解决方案stakfeman,但是在运行Quartz Jobs时遇到了一些问题。最后,我找到了解决方案:在Spring中使用Quartz,代码如下: 再次感谢您的帮助,如果问题

  • 问题内容: 我试图在我的Java独立代码中使用来加载位于我的类路径中的jar文件内部的。 applicationContext.xml条目如下, 而且,当我尝试以这种方式加载bean时,我得到了。不能通过这种方式加载bean吗? jar文件作为maven依赖项添加到我的类路径中。当我在该项目的Eclipse中看到Java Build Path时,看到该jar链接为M2_REPO /…/.。 我以为