Vyacheslav Artemyev
Vyacheslav Artemyev
Compatibility verification issue for the plugin: > Plugin descriptor plugin.xml does not include any module dependency tags. The plugin is assumed to be a legacy plugin and is loaded only...
``` public enum MediatekaPage { VIDEO("video"), AUDIO("audio"), PHOTO("photo"); private String value; MediatekaPage(String value) { this.value = value; } } ``` ``` @GetMapping("/{page}") getMediatekaPage(@PathVariable MediatekaPage page) ```
an example of using it: https://www.logicbig.com/how-to/code-snippets/jcode-spring-mvc-webmvcconfigurer.html
Chapter 5 has code examples with Kotlin coroutines that don't work (`Intro.kt`, at least). There is a stacktrace: ``` Exception in thread "main" java.lang.NoClassDefFoundError: kotlin/coroutines/AbstractCoroutineContextKey at java.base/java.lang.ClassLoader.defineClass1(Native Method) at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1016)...
This feature already discussed in an issue: https://github.com/zalando/zally/issues/874. Do you have a set of rules for it? Do you want to do it expandable and configurable? I found Google definitions...