-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kotlin Support #1169
Comments
For my Android App I'm currently playing with Kotlin and was able to let Kotlin see Lombok generated getters by adding the lombok processor to
This is from a gradle build but should be also possible with maven. :) |
How can this be done via Maven? Also how can I use |
I tried using
With no effect. |
I have the same problem. We are using Lombok in our Android apps and it looks like we can't use it along side with kotlin. @dodgex suggestion did not work for me. |
@dodgex I added kapt plugin with kapt "org.projectlombok:lombok:1.16.14" . Help me! |
Any solution found to this? I have the same issue. We use Intellij with Java and lombok. and build with maven. |
Hi, The only solution I found quite satisfactory was to move the lombok annotated java file in a separate maven module. But in our case lombok annotations were only used for DTOs (model), so it did make sense to approach this way. Kind regards Tony |
@dodgex do you have a working solution or a minimal proof-of-concept that you are able to post? All of the comments here suggest that this does not work. |
Sorry but currently I don't have a project using lombok & kotlin. |
Hmmm. I'm probably not understanding the issue but it seems like this is possible as of Kotlin 1.2.21. All I did was blindly follow the instructions on the Kotlin Web site ... and I was able to see Lombok-generated methods in Kotlin without creating any separate modules ... Again, I'm probably misunderstanding the issue completely so any clarification would be appreciated. |
Hi, I am not a specialist but I am trying to shed a light on the problem.
There are some popular ATP libraries to generate useful java sources (related to hibernate, spring boot properties, java bean mappers - MapStruct) and there is no problem with them in java/kotlin module, thanks to kapt. But on the other hand because lombok modifies the bytecode during the compilation kapt can do nothing about it. This is the problem I came across and if, I remember well, there was a thread, I suppose on stackoverflow, where the kotlin language architect told about this issue, explaining things more in depth. Kind regards. |
@jtonic, thank you. Your explanation makes a lot of sense. @dodgex If you have time, can you take a look at a sample branch I have? It's an minimal unsuccessful attempt to use Lombok in Kotlin, and I was wondering what you did to make it work. |
@mouyang
Note: I remember I read on some stack overflow thread another approach - smth like put some generated lomboked classes in a gen folder and then refer it in the kotlin compilation one. This could work but for me it was an additional burden on the build tool. I really hope all these help you figured out how to approach the kotlin/java/lombok issue. |
I've been trying to look for a solution for this problem to try to get my ancient team to migrate to a new language. we're so ancient that the leads complain about using java8's lambdas. i ended up making a
i usually use gradle..im not too familiar with maven. improvements are welcome. i don't think it supports incremental compilation...i also imagine that having to modify every plugin originally using |
Seems like Kotlin themselves is working on a Lombok integration: https://github.com/JetBrains/kotlin/tree/master/plugins/lombok/lombok-compiler-plugin |
That's fascinating, I had a quick look at the code and it seems like it adds some kind of method stubs to make them visible for Kotlin. If I have not missed anything that requires a basic reimplementation of all lombok handlers, seems to be a bunch of work 😄 I also tried to understand the Kotlin compilation process and I think it still invokes |
kotlin+java projects are compiled like this:
So to support lombok you need to provide all symbols lombok generates to kotlin on (1). Thats what new plugin does. You may call it stubs, they are basically declarations of parts lombok will generate later.
it will work as long as you don't refer any lombok-generated symbols from kotlin code. |
@zveznicht Thanks for the additional details. Does kotlinc uses its own parser or does it use javac to generate the symbols/stubs? If it is the former the plugin is the only solution but if it is the latter it might be possible to invoke lombok. |
kotlinc uses its own parser |
Check https://kotlinlang.org/docs/lombok.html. Seems to work for me. |
We're still seeing some issue traffic on this. Does the kotlin plugin for lombok as linked by @CharlyLafon37 above work as expected? To be clear, this is what I expect, and this is what we will (attempt to) fix:
What we won't fix is:
|
Assuming that plugin works, can somebody tell me what happens if that plugin isn't around? Does lombok just silently not run, or is it more like #2428 describes: That lombok does run as annotation processor, fails to detect environment, says so in an error log, and throws in the towel? Assuming the kotlinlang plugin works, we need to update our docs to refer to it. If lombok does run but fails to detect environment, we should make it detect environment and adjust our error message to refer to the plugin. |
alguma atualização? estou tendo esse problema |
Hello,
I'm wanting to use Kotlin in a project that uses Lombok with Java.
However, while the IDE shows code as valid, the Kotlin compiler can not see Lombok generated code.
This makes mixing Java+Lombok with Kotlin impossible.
Would it be possible to also apply the Lombok processing to the Kotlin compiler so we can have harmony?
The text was updated successfully, but these errors were encountered: