package com.allfree.allfreespringbackend.common; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component @ConfigurationProperties("application.properties") public class Properties { public static final String jwtSecretKey = "allfreeSpringSecretKey"; }