tmg
09/12/2019, 12:36 PM@get:
it gets weird and messy, if there was a better way to extend this kinda stuffsdeleuze
09/12/2019, 12:51 PMsdeleuze
09/12/2019, 12:52 PMsdeleuze
09/12/2019, 12:52 PMNoel
09/12/2019, 2:23 PMcorneil
09/12/2019, 2:31 PMNoel
09/12/2019, 2:35 PMdavidkarlsen
09/14/2019, 7:48 PMdavidkarlsen
09/14/2019, 8:07 PMBernhard
09/16/2019, 2:23 PMJason Feng
09/18/2019, 6:20 AM@Entity
class NewUser {
lateinit var id: String
lateinit var firstName: String
lateinit var middleName: String
lateinit var lastName: String
lateinit var email: String
}
Jason Feng
09/18/2019, 6:21 AMdata class DataNewUser(
val id: String,
val firstName: String,
val middleName: String, // what if this is optional, in DB level, this can be null
val lastName: String,
val email: String
)
Jason Feng
09/18/2019, 6:21 AMcorneil
09/18/2019, 9:40 AMvar
properties mostly optional and then data classes that match name and structure for use in the rest of the system. And I have toModel()
and toEntity()
functions on the classes.sdeleuze
09/18/2019, 10:07 AMsdeleuze
09/18/2019, 10:07 AMsdeleuze
09/18/2019, 10:07 AMdata class
with val
properties for other persistence enginesManuel Lorenzo
09/19/2019, 1:00 PMManuel Lorenzo
09/19/2019, 1:01 PM.gitinore
file to use? I normally use http://gitignore.io but I think it’s a bit outdatedsdeleuze
09/19/2019, 1:02 PM.gitignore
Manuel Lorenzo
09/19/2019, 1:09 PMSandy
09/19/2019, 2:55 PMreik.schatz
09/19/2019, 4:02 PMorg.jetbrains.kotlinx
libraries 1.3+ with spring boot 2.1.8.RELEASE
. hitting java.lang.ClassNotFoundException: kotlinx.coroutines.reactive.flow.PublisherAsFlowKt
because they changed package over 1.2.xdavidkarlsen
09/19/2019, 4:11 PMField busX in com.edb.fs.tac.jfr.srv.service.infra.jaxws.AbstractJaxWsClientStubConfig required a single bean, but 3 were found:
- jaxRsServerBus: defined by method 'jaxRsServerBus' in class path resource [com/edb/finance/common/cxf/autoconfig/jaxrs/JaxRsAutoConfiguration.class]
- jaxWsServerBus: defined by method 'jaxWsServerBus' in class path resource [com/edb/finance/common/cxf/autoconfig/jaxws/JaxWsAutoConfiguration.class]
- jaxWsClientBus: defined by method 'jaxWsClientBus' in class path resource [com/edb/finance/common/cxf/autoconfig/jaxwsclient/JaxWsClientAutoConfiguration.class]
even though I have
abstract class AbstractJaxWsClientStubConfig {
@Value("\${cxf.schemaValidation:true}")
private val schemaValidation: Boolean = false
@Value("\${cxf.exceptionMessageCauseEnabled:true}")
private val exceptionMessageCauseEnabled: Boolean = false
@Inject
@Named("jaxWsClientBus")
private lateinit var busX: Bus
Sandy
09/21/2019, 7:39 PMMaksim Vlasov
09/23/2019, 3:44 PMreik.schatz
09/24/2019, 7:46 AMsdeleuze
09/30/2019, 4:21 PMsdeleuze
09/30/2019, 4:21 PMBen Madore
10/01/2019, 2:01 PM