- Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Description
I was trying to verify the fix for #1767 ; however, I'm seeing problems with @value placeholder replacement using the HEAD of the 'master' branch.
I build and published a 2.7.0-SNAPSHOT release to my local maven repo using the following command:
./gradlew clean build publishToMavenLocal
I've thoroughly reviewed #1621 and tried manipulating the order of our configuration bean; however, it doesn't seem to help.
@Configuration @EnableConfigurationProperties @ConfigurationProperties("premiseServer") @Slf4j public class ServletContainerConfiguration implements EmbeddedServletContainerCustomizer { ... @Value("${server.port}") int port; ... } Of course, going back to 2.6.1 works fine. Not sure where to go from here.