Dirk
08/21/2021, 7:52 PMNull return value from advice does not match primitive return type for: public abstract double <DTONAME>.<METHOD>()
Richard Gomez
08/21/2021, 9:18 PMfun MyDTO.myMethod() { }
Dirk
08/22/2021, 7:38 AMDirk
08/22/2021, 1:04 PMRichard Gomez
08/23/2021, 4:30 PM@ReadingConverter
class DtoNameConverter : Converter<Row, DtoName> {
override fun convert(row: Row): DtoName {
return DtoName(
id = row["id"] as Long,
...
)
}
}
Dirk
08/23/2021, 7:32 PM