从@Configuration

时间:2019-07-01 09:57:05

标签: java spring-boot

我是spring-boot的新手,正在设置新服务器。 我公司在不同文件中分别配置(例如:jdbc.properties,smtp.properties等)。所有配置都放置在“属性文件” 文件夹中,并放置在Tomcat文件夹中(作为“ webapps”文件夹的同级文件),并放置在具有给定应用程序名称的专用文件夹中;例如,如果我的应用程序名为:“ wonderful-server”,我的所有配置文件都将位于:“ @ TomcatFolder / property-files / wonderful-server /”

我的想法是使用绝对文件路径访问属性文件,例如:“ file:$ {catalina.home} / property-files#{server.servlet.context-path} /smtp.properties”。 但是,如果我尝试从@Configuration类访问“ server.servlet.context-path”,则会获得null。


我尝试放入application.properties:

server.servlet.context-path=/wonderful-server

并添加到我的@Configuration类:

@Value("${server.servlet.context-path=/wonderful-server}") String contextPath;

但是在春季启动时,contextPath包含null。如果我使用#而不是$,则相同。


然后我尝试将其放入@SpringBootApplication类的主体中:

System.setProperty("server.servlet.context-path", "/formx-server");

并在我的@Configuration类中使用:

String contextPath = System.getProperty("server.servlet.context-path");

但是在春季启动时,contextPath包含null。如果我使用的话也一样:

@Value("#{systemProperties['server.servlet.context-path']}") private String contextPath;

或:

@Value("#{server.servlet.context-path}") private String contextPath;

我的@configuration类非常简单,例如:

@Configuration
public class EmailConfig {

    @Bean
    public JavaMailSender getJavaMailSender() {
        JavaMailSenderImpl mailSender = new JavaMailSenderImpl();

        try {
            Properties props = PropertiesLoaderUtils.loadProperties( new FileSystemResource(System.getProperty("catalina.home")+"/property-files/wonderful-server/smtp.properties"));
            mailSender.setHost(props.getProperty("mail.host"));
            mailSender.setPort(Integer.parseInt(props.getProperty("mail.port")));

            mailSender.setUsername(props.getProperty("mail.username"));
            mailSender.setPassword(props.getProperty("mail.password"));

            Properties properties = mailSender.getJavaMailProperties();
            properties.put("mail.transport.protocol", props.getProperty("mail.transport.protocol"));
            properties.put("mail.smtp.auth", props.getProperty("mail.smtp.auth"));
            properties.put("mail.smtp.starttls.enable", props.getProperty("mail.smtp.starttls.enable"));
            properties.put("mail.debug", props.getProperty("mail.debug"));

        } catch (IOException e) {
           // e.printStackTrace();
            LOG.error("Error to send email: "+e.getMessage());
        }


        return mailSender;
    }
}

在此类中,我使用了带有静态context-path的绝对路径,我试图将其用作变量。


提前:谢谢大家的宝贵时间。

1 个答案:

答案 0 :(得分:0)

您使用的是=而不是:

内部属性:

server.servlet.context-path=/wonderful-server

但在Configuration(内部)中:

:之后是默认值:

@Value("${server.servlet.context-path:/wonderful-server}") String contextPath;