Skip to content

Commit 2dd46e7

Browse files
committed
ASAP-69 fix: jwt secret 설정 과정에서 val -> var 변경함으로써 매핑 문제 해결(No setter found for property)
1 parent 16dec2c commit 2dd46e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Infrastructure-Module/Security/src/main/kotlin/com/asap/security/jwt/user/UserJwtProperties.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties
44

55
@ConfigurationProperties(prefix = "jwt.user")
66
class UserJwtProperties(
7-
val secret: String
7+
var secret: String
88
) {
99

1010
companion object{

0 commit comments

Comments
 (0)