FAQ
Last updated
Was this helpful?
Last updated
Was this helpful?
How to get commitizen and cz-conventional-changelog work for non-node-git-repo
?
You can get commitizen and cz-conventional-changelog work for non-node-git-repo
with global installation. Here are the steps that I have followed.
Make sure Spring Boot plugin in enabled in menu File | Settings | Plugins | Spring Boot
Enable via menu File | Settings | Build, Execution, Deployment | Compiler | Annotation Processors | Enable annotation processing
Since , you need to run manually the command gradle kaptKotlin
to generate the metadata
@Validated is for "validation groups", This can be used in multi-step forms
@Valid is for one-step validation
Ref
Add alias(libs.plugins.gradle.lombok)
and alias(libs.plugins.kotlin.lombok)
plugins to subproject's build.gradle.kts
.
No need to add compileOnly(libs.lombok)
and annotationProcessor(libs.lombok)
dependencies.
You can only add lombok annotations to java classes.
Kotlin compiler ignores Lombok annotations if you use them in Kotlin code.
We are using slf4j 2.0.0's for logging.
declare logger for each class private val logger = KotlinLogging.logger {}