Fabian
06/25/2019, 2:17 PMFabian
06/25/2019, 2:17 PMFabian
06/25/2019, 2:18 PMFabian
06/25/2019, 2:18 PMCzar
06/25/2019, 3:38 PMAdam
06/25/2019, 5:13 PMAdam
06/25/2019, 5:14 PMwakingrufus
06/26/2019, 9:49 PMM1heng
07/02/2019, 9:08 AMPablo Schmid
07/05/2019, 8:27 PMrepo.findLastChangeRevision(id)
I got the expected User entity but when i want to get the nationalities it throws an illegalStateExcepion. Any clue? Thanks in advanceCzar
07/08/2019, 9:50 AM2.1.6.RELEASE
The thing doesn't work 🙂
1. It generated a project with gradle kotlin-dsl syntax, but file is called build.gradle
2. It used map syntax for extra variables, which then were referenced simply by name, which of course doesn't work
extra["snippetsDir"] = file("build/generated-snippets")
extra["springBootAdminVersion"] = "2.1.5"
instead of
val snippetsDir by extra { file("build/generated-snippets") }
val springBootAdminVersion by extra { "2.1.5" }
3. tasks.asciidoctor {
inputs.dir(snippetsDir)
dependsOn(test)
}
instead of
tasks.asciidoctor {
inputs.dir(snippetsDir)
dependsOn(tasks.test)
}
test
is not visible in the asciidoctor lambda directly.
4. The wizard asked for the package to generate, but no sources roots were generated and therefore no packages either.sdeleuze
07/08/2019, 1:58 PMsdeleuze
07/08/2019, 2:00 PM2.1.6.RELEASE
and the file is build.gradle.kts
sdeleuze
07/08/2019, 2:02 PMdharrigan
07/15/2019, 8:16 AMSoren Valle
07/18/2019, 9:33 PMval property: Property = ObjectMapper().registerModule(KotlinModule()).readValue(request.inputStream, Property::class.java)
works as expected.Soren Valle
07/18/2019, 9:35 PMMinatorak
07/25/2019, 8:22 AMMinatorak
07/25/2019, 8:23 AMxenoterracide
07/25/2019, 5:58 PM@Service
@ConditionalOnMissingBean(PatientService::class)
class DetachedPatientService(private val emrRepo: EmrRepository) : PatientService {
this should instantiate if no other patient service’s have been created right?Fabian
07/30/2019, 2:45 PMmp
08/01/2019, 10:32 AMmp
08/01/2019, 10:33 AMmp
08/01/2019, 10:34 AMRobert Jaros
08/07/2019, 1:58 PM.asType<...>()
the whole query just hangs without any result or exception
I can get results as a Map<String,Any>
or custom mapping with .map(...)
without problems
I've tried adding @Table
and @Column
annotations but without any successRobert Jaros
08/09/2019, 2:34 PMsdeleuze
08/09/2019, 2:35 PMRobert Jaros
08/09/2019, 2:35 PMsdeleuze
08/09/2019, 2:35 PMRobert Jaros
08/09/2019, 3:10 PMawaitSingle()
extension function?