Re: Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-15 Thread 'Frank Hossfeld' via GWT Users
Are you certain, that the annotation processor had ran? I have not digged into domino-jackson, but I think, the @JsonMapper annotation triggers a annotation processor. The generated classes will be found under 'target/generated-sources/annotatins' Marco Tenti (IoProgrammo88) schrieb am Montag,

Re: Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-15 Thread 'Frank Hossfeld' via GWT Users
Are you certain, that the annotation processor already run? I have not digged into domino-jackson, but I think, the @JsonMapper annotation triggers a annotation processor. The generated classes will be found under 'target/generated-sources/annotatins' Marco Tenti (IoProgrammo88) schrieb am

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-15 Thread 'RobW' via GWT Users
Note sure if this will gelp you much - we're a Gradle user, and don't use intellij. But the basic principles are the same. When we migrated to the latest GWT we also updated our top level gradle build file to have a gwtSuperDev task which does all the heavy lifting for us: task

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-15 Thread Mathias
Hi Thomas unfortunately, I'm still stuck. I thought I'd attack the Lombok dependency first, since that's a third-party it depends on. I don't suppose you've ever been exposed to that? I tried setting the *compile *to the "configuration" setting of the plugin def in pluginmanagement of the

Re: NoClassDefFoundError on a particular class while running gwt:codeserver

2024-04-15 Thread Mukeya Kassindye
Hi everyone, @Tbroyer : I ended up change the scope of my hibernate dependencies to runtime and now it is working fine. @Jens, just by changing the scope to runtime, with the version I specified. it is working. thanks all for the tips. Mnamo Ijumaa, 5 Aprili 2024 saa 10:06:46 UTC-3 Thomas

Re: Problems moving JsInterop from GWT 2.7 to 2.8

2024-04-15 Thread Marco Tenti (IoProgrammo88)
" I also solved the problem of List and Map with an own Interface, which is an ArrayList/HashMap on serverside and an own implemented native List/Map on gwt side" can you share the solution ? Il giorno venerdì 29 settembre 2017 alle 14:00:12 UTC+2 Ignacio Baca Moreno-Torres ha scritto: > We

Re: Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-15 Thread Marco Tenti (IoProgrammo88)
I also try to use the external approach described here https://dominokit.com/solutions/domino-jackson/v1/docs/getting-started/define-mappers but it should be the same i must have the XXMapperImpl somewhere , but the java compiler tell me that class do not exists. Maybe there is some maven

Re: Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-15 Thread Marco Tenti (IoProgrammo88)
The problem i cannot find the generate class "Person_MapperImpl" is under the target folder somewhere ? Il giorno venerdì 12 aprile 2024 alle 18:25:30 UTC+2 Thomas Broyer ha scritto: > Aren't you supposed to directly use the generated class rather than using > GWT.create() ? (unless you also