enleur
10/04/2017, 8:41 PMvillela
10/06/2017, 7:28 PMtiare.balbi
10/16/2017, 1:07 PMFelipe
10/19/2017, 8:17 AM@Value("\${email.address.override:}")
jasper
10/24/2017, 12:28 PMlex
10/25/2017, 4:09 AMmichael salmon
11/01/2017, 1:59 PMmichael salmon
11/03/2017, 7:49 PMSola
11/06/2017, 4:41 AMtiare.balbi
11/08/2017, 3:08 PMsdeleuze
11/10/2017, 9:20 AMMavelys
11/13/2017, 12:45 PMCzar
11/14/2017, 11:00 AM@Value("\${provider.url:}") lateinit var urlString: String
worked.oskarh
11/14/2017, 11:03 AM@RequestParam
of type Int
, but get
"Optional int parameter 'p' is present but cannot be translated into a null value due to being declared as a primitive type. Consider declaring it as object wrapper for the corresponding primitive type."
Any way I can force Kotlin to use the wrapper class Integer instead of the primitive type?nikos
11/19/2017, 7:05 PM@SpringBootApplication
), so that you either have to add the package of your FooRepository
to the component scan packages, or put FooRepository in the same package or sub-package where ReactiveKotlinApplication
lives, see https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-structuring-your-code.html for detailssdeleuze
11/20/2017, 8:00 AMbean<FooRepository>()
and bean<BarRepository>()
in the beans {}
block.ecampolo
11/21/2017, 12:13 PM@Column(name = "title", nullable = false)
var title by Verified(title, "The title cannot be blank", String::isNotBlank) // Verified is a Delegate.
qwert_ukg
11/23/2017, 4:06 AMspring.jackson.property-naming-strategy=SNAKE_CASE
is not working 😞Czar
11/27/2017, 1:58 PMsdeleuze
11/27/2017, 1:59 PMleodeng
11/27/2017, 2:04 PMgradle.properties
or ext['kotlin.version]
? i’d prefer the latter, since it centralized the kotlinVersion definitionsdeleuze
11/28/2017, 2:08 PMsdeleuze
11/29/2017, 10:22 AMcompile("com.fasterxml.jackson.module:jackson-module-kotlin")
so you have to add it back to your project dependencies. We will try to tackle that on start.spring.io side.ander.dev
11/30/2017, 9:49 PMsdeleuze
12/03/2017, 3:10 PMfitzoh
12/04/2017, 3:55 PMenleur
12/05/2017, 10:02 AMleodeng
12/06/2017, 11:54 AMkotlin.version
to null (ext['kotlin.version'] = null
), but the error reported is interesting:
* What went wrong:
Execution failed for task ':compileKotlin'.
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find org.springframework.boot:spring-boot-starter-webflux:.
Required by:
project :
> Could not find org.springframework.boot:spring-boot-starter-data-jpa:.
Required by:
project :
> Could not find org.springframework.integration:spring-integration-webflux:.
Required by:
project :
> Could not find com.fasterxml.jackson.module:jackson-module-kotlin:.
Required by:
project :
there are no errors mentioning kotlin, and why would other dependencies resolution fail?tiare.balbi
12/09/2017, 2:36 PMjuliocbcotta
12/09/2017, 2:58 PMdata class
... is there any solution that does not involves implementing equals and hashcode by hand?juliocbcotta
12/09/2017, 2:58 PMdata class
... is there any solution that does not involves implementing equals and hashcode by hand?Czar
12/09/2017, 3:09 PMjuliocbcotta
12/09/2017, 5:53 PMdata
from Training class the request works fine.lex
12/11/2017, 3:56 AM