tomcat - @Inject 属性在 Tomcat 上返回 null

标签 tomcat jakarta-ee cdi

我创建了一个类来管理发送电子邮件,我想通过属性文件注入(inject) smtp 配置。但是我的字段属性一直为空。 这是我的代码:

public class EmailUtils { 
    @Inject
    @PropertiesFromFile("smtp.properties")
    Properties properties;

    public void sendEmail(String destinator, String subject, String body) {
        final String username = properties.getProperty("smtp.email");
        final String password = properties.getProperty("smtp.password");

        Session session = Session.getInstance(properties,
          new javax.mail.Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(username, password);
            }
          });

        try {

            Message message = new MimeMessage(session);
            message.setFrom(new InternetAddress(properties.getProperty("smtp.from")));
            message.setRecipients(Message.RecipientType.TO,
                InternetAddress.parse(destinator));
            message.setSubject(subject);
            message.setText(body);

            Transport.send(message);

            System.out.println("Done");

        } catch (MessagingException e) {
            throw new RuntimeException(e);
        }
   }
}

public class PropertyReader {

    @Produces
    @PropertiesFromFile
    public Properties provideServerProperties(InjectionPoint ip) {
    //get filename from annotation
    String filename = ip.getAnnotated().getAnnotation(PropertiesFromFile.class).value();
    return readProperties(filename);
}

    private Properties readProperties(String fileInClasspath) {
        InputStream is = this.getClass().getClassLoader().getResourceAsStream(fileInClasspath);

        try {
            Properties properties = new Properties();
            properties.load(is);
            return properties;
       } catch (IOException e) {
           System.err.println("Could not read properties from file " + fileInClasspath + " in classpath. " + e);
       } catch (Exception e) {
           System.err.println("Exception catched:"+ e.getMessage());
       } 

       return null;
   }
}

@Qualifier
@Target({METHOD, FIELD})
@Retention(RUNTIME)
public @interface PropertiesFromFile {
    @Nonbinding
    String value() default "application.properties";
}

我用一个简单的 Main 测试了代码,但它不起作用。 我用 tomcat 对其进行了测试,但仍然在 Properties 对象上得到了 NPE。 我错过了什么? 请帮助:)

最佳答案

请考虑采用这种 Java EE 方式:

  1. 如果使用 Tomcat,请确保您已按照 How to install and use CDI on Tomcat? 中的描述使用 CDI 实现对其进行设置。或 Application servers and environments supported by Weld .

  2. 将 JavaMail 实现 jar 从应用程序的 WEB-INF/lib 移动到 Tomcat lib 目录。

  3. 通过将以下内容添加到它的 config/Context.xml 文件中,在 Tomcat 中配置您的电子邮件 session :

    <Context>
        ...
        <Resource name="mail/Session" auth="Container"
          type="javax.mail.Session"
          mail.smtp.host="your mail host here"
          mail.smtp.user="your user name here"
          password="your password"
          mail.from="noreply@yourdomain.com" />
        ...
    </Context>   
    

    还有其他地方可以放置此配置,但这里是最简单的解释。引用Tomcat JNDI documentation了解更多信息。

  4. 简化您的代码:

        @Resource(name="mail/Session")
        private Session session;
    
        public void sendEmail(String destinator, String subject, String body) {
            try {
    
                Message message = new MimeMessage(session);
                message.setRecipients(Message.RecipientType.TO,
                        InternetAddress.parse(destinator));
                message.setSubject(subject);
                message.setText(body);
    
                Transport.send(message);
    
                System.out.println("Done");
    
            } catch (MessagingException e) {
                throw new RuntimeException(e);
            }
        }
    

    您的服务器(在本例中为 Tomcat)负责为您配置邮件 session 和身份验证。

类似的机制适用于设置 JDBC 数据源对象 FWIW。

关于tomcat - @Inject 属性在 Tomcat 上返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46127623/

相关文章:

jsf - 是否有任何理由在 CDI session 范围 bean 中使用有状态 EJB

tomcat - 如何将文件从微 Controller 上传到tomcat servlet

java - Java App 的加载问题 - 如何复制?

java.sql.SQLException : Column count doesn't match value count at row 1 Servlets Error or Mysql Error?

java - weblogic 服务器中的异常 - 非法尝试调用 EJBContext.setRollbackOnly()

java - wildfly - 将 CDI 与 POJO 结合使用

java - Jira Rest Java Client Dynamic WebApp 转换为 Maven 不工作

tomcat - SQLException: 找不到合适的驱动程序

java - 如何使用接口(interface)和 JPA

jakarta-ee - DAO 和服务类应该使用哪个 CDI 范围