Mehmet BEBEK
Mehmet BEBEK
@Delson704557 Default credential is default login user and password. Please try unix username/password to login
I have a spring boot app with kotlin, I am using vuejs for front end side. This error occurs when I can rest endpoint from ui. Also following small code...
``` com.fasterxml.jackson.core jackson-databind 2.10.2 compile com.fasterxml.jackson.datatype jackson-datatype-jdk8 2.10.2 compile ``` Actually I didnt add it. It comes with default spring boot web dependency org.springframework.boot spring-boot-starter-web
@cowtowncoder I have upgraded spring version to org.springframework.boot spring-boot-starter-parent 2.2.6.RELEASE My new versions are: com.fasterxml.jackson.core jackson-databind 2.10.3 compile com.fasterxml.jackson.datatype jackson-datatype-jdk8 2.10.3 compile com.fasterxml.jackson.datatype jackson-datatype-jsr310 2.10.3 compile com.fasterxml.jackson.module jackson-module-parameter-names 2.10.3 compile...
Update: Following code doesn't complain, ``` companion object { @JvmStatic @JsonCreator fun fromTag(tag: String): TagInfo? { return getEnum(tag) } fun getEnum(requestedValue: String?): TagInfo? { for (value in values()) { if...