<Kotlin &amp; Spring (Data): custom setters> I cur...
# stackoverflow
u
Kotlin &amp; Spring (Data): custom setters I currently am working on a project that uses Spring Boot, written in Kotlin. It has got to be mentioned that I am still relatively new to Kotlin, coming from Java. I have a small database consisting of a single table that is used to look up files. In this database, I store the path of the file (that for this testing purpose is simply stored in the the resources of the project). The object in question looks as follows: @Entity @Table(name = "NOTE_FILE") class NoteFile { @Id...