jackson isn’t recognizing my `@JsonProperty` ``` ...
# spring
x
jackson isn’t recognizing my
@JsonProperty
Copy code
data class RabbitMqUser(
    @JsonProperty("password_hash")
    val passwordHash: String,
    var tags: String = ""
)
any ideas why that might be?
l
does
@field:JsonProperty
work?
x
it might, just realized I wasn’t applying the jackson kotlin module, which applying that fixes it