TomasWild
11/14/2024, 5:38 PMClass 'Customer' should have [public, protected] no-arg constructor
. I have both plugins:
plugins {
kotlin("jvm") version "2.0.21"
kotlin("plugin.spring") version "2.0.21"
id("org.springframework.boot") version "3.3.5"
id("io.spring.dependency-management") version "1.1.6"
kotlin("plugin.jpa") version "2.0.21"
}
As far as I understand, kotlin("plugin.jpa")
should contain the compiler plugin with no arguments
, but maybe I'm wrong.ephemient
11/14/2024, 9:36 PM@Entity
@Embeddable
and @MappedSuperclass
annotated classes - is your Customer
one of them?TomasWild
11/14/2024, 9:38 PM@Entity
ephemient
11/14/2024, 9:46 PMephemient
11/14/2024, 9:48 PMephemient
11/14/2024, 9:49 PMTomasWild
11/14/2024, 9:51 PM