allfree-springboot-backend / src / main / java / com / allfree / allfreespringbackend / common / Properties.java
Properties.java
Raw
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";

}