I’m trying to actually use an immutable pojo in my...
# spring
m
I’m trying to actually use an immutable pojo in my spring project, and I have
jackson-module-kotlin
in my pom dependencies. When I run my
NamedParameterJdbcTemplate
with a
BeanPropertyRowMapper
, though, it’s throwing
Illegal arguments for constructor; nested exception is java.lang.IllegalArgumentException: No argument provided for a required parameter: parameter #0
. What might I be missing?
UGH. For now I’ll just make them
vars
and move on. An hour of maven is enough with no success.