Coder Social home page Coder Social logo

Comments (10)

lombokissues avatar lombokissues commented on August 16, 2024

πŸ‘€ voidstar Β  πŸ•— Sep 02, 2009 at 01:35 UTC

What steps will reproduce the problem?

  1. Put an @ NotNull on a field and watch javac choke.

Please provide any additional information below.
In my case I'm using an older version of hibernate validator with it's
@ org.hibernate.validator.NotNull annotation. The newest version uses @ javax.validation.NotNull
which from what I can tell will have the same issue.

See this thread:
http://groups.google.com/group/project-lombok/browse_thread/thread/572eb913e1a86eea

from lombok.

lombokissues avatar lombokissues commented on August 16, 2024

πŸ‘€ reinierz Β  πŸ•— Sep 02, 2009 at 02:04 UTC

Well, it'll only choke on that particular variant of @ NotNull (javax.validation.NotNull). But, show-stopper. We'll fix
this ASAP.

from lombok.

lombokissues avatar lombokissues commented on August 16, 2024

πŸ‘€ r.spilker Β  πŸ•— Sep 02, 2009 at 08:27 UTC

To solve it right, we need to implement the bindings so we can tell what exact
NotNull is being used and maybe even check where it can be applied.

For now, I'm considering to NOT copy the NotNull annotation to the parameter because,
for as far as I know, the only other NotNull annotation in the wild is the one from
IDEA, and currently we don't support IntelliJ anyway. And not having the annotation
copied won't break anything.

from lombok.

lombokissues avatar lombokissues commented on August 16, 2024

πŸ‘€ reinierz Β  πŸ•— Sep 02, 2009 at 08:31 UTC

Yup. For safety's and consistency's sake, we should probably stop copying the annotations everywhere (so, also
for the getter), and not just for the parameters of the setter and the constructor.

from lombok.

lombokissues avatar lombokissues commented on August 16, 2024

πŸ‘€ jacek99 Β  πŸ•— Sep 02, 2009 at 08:59 UTC

Wouldn't it be better to have some generic logic that would look at how an annotation
is defined and where it can be applied and use that in a common fashion to decide if
annotations should be copied around?

The same issue may pop up on other annotations that Lombok may have to deal with in
the future.

from lombok.

lombokissues avatar lombokissues commented on August 16, 2024

πŸ‘€ reinierz Β  πŸ•— Sep 02, 2009 at 09:18 UTC

jacek99: Well, what kind of 'generic' logic are you referring to? If you're referring to: Check the target
ElementType and copy only if its legal - well, lombok can't do that - no type info. That's what Roel meant in
comment ﹟2 with "we need to implement the bindings so we can tell". It's planned - the suggested 'let's not
copy anything' is a short-term workaround.

from lombok.

lombokissues avatar lombokissues commented on August 16, 2024

πŸ‘€ reinierz Β  πŸ•— Sep 02, 2009 at 23:41 UTC

Fixed in c46bf85 which will be rolled out in v0.8.5.

The "fix" simply reduces the feature to scan only for annotations named 'nonnull'. All annotations named nonnull
work the way we want them to (e.g. legal on parameters). The only commonly used notnull that ISNT a variant of
javax.validation.NotNull is IDEA's, but lombok doesn't support IDEA.

This is a workaround - once lombok supports type introspection we'll fix this properly.

from lombok.

lombokissues avatar lombokissues commented on August 16, 2024

πŸ‘€ matt.deboer Β  πŸ•— Oct 17, 2011 at 19:48 UTC

This doesn't seem to be resolved (or has regressed?); using Lombok 0.10.1 with a maven 3.0.3 build, having a simple class with a single member which has @ javax.validation.constraints.NotNull applied causes compiler plugin to bomb with the aforementioned "annotation type not applicable to this kind of declaration".. this works correctly within Eclipse environment, but fails during Maven build.
(Compiler plugin is configured to use compilerVersion,source,target all = 1.6)

from lombok.

lombokissues avatar lombokissues commented on August 16, 2024

πŸ‘€ reinierz Β  πŸ•— Oct 25, 2011 at 13:04 UTC

It's a regression introduced in 0.10.1. See issue #360 for more up to date discussion.

from lombok.

lombokissues avatar lombokissues commented on August 16, 2024

End of migration

from lombok.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.