forbidden-apis VS NullAway

Compare forbidden-apis vs NullAway and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
forbidden-apis NullAway
4 20
313 3,524
0.3% 1.4%
6.5 9.0
about 1 month ago about 10 hours ago
Java Java
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

forbidden-apis

Posts with mentions or reviews of forbidden-apis. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-09.
  • Stop Using Utcnow and Utcfromtimestamp
    3 projects | news.ycombinator.com | 9 Oct 2022
    > All this stuff would be a lot easier if timezones always had to be stated explicitly.

    On Java, you can use the forbidden-apis build plugin (https://github.com/policeman-tools/forbidden-apis) to fail the build whenever a timezone or locale or charset is not specified explicitly (it forbids the methods from the Java API which use an implicit timezone/locale/charset). I don't know whether there's something similar for Python; it might be harder because Python is much more dynamic (though it might be possible to use monkeypatching to warn whenever the bad methods are used).

  • Decluttering Google Guava
    7 projects | /r/java | 19 Jun 2022
    Is https://github.com/policeman-tools/forbidden-apis something that might help you in the interim?
  • What are some useful static analyzers for Java?
    9 projects | /r/java | 2 Jan 2022
    Besides the classic pmd/stopbugs/jacoco/owasp, a favorite of mine is forbidden-apis.
  • Retrofit Java
    1 project | /r/java | 14 May 2021
    Regarding the "deleting them if not necessary any or are deprecated or do not make sense anymore ", something you can use today is this nice maven plugin:forbidden-apis.

NullAway

Posts with mentions or reviews of NullAway. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-22.
  • My Thoughts on “Bad Code”
    1 project | news.ycombinator.com | 17 Mar 2023
    Some patterns arise from language design

    * You can't express `T` where `null` is forbidden in the type system so you get NullPointerException everywhere and defensive null checks.

    * You express a sum type as a product type because your language does not have sum types .

    * Your language doesn't have first class multiple return values (or tuples) so you return extra parameters via out parameters or thread local variables such as `errno`.

    * Your language doesn't have exceptions (or algebraic effects) and can't do IO so you have monad transformers.

    * Your language doesn't have set-theoretic types so you need hacks like `thiserror` .

    * Your language doesn't have stackful coroutines or can't infer async IO for you so you have `async/await` spam or callback hell or "mono's".

    * Your language doesn't have exhaustive checks (or pattern matching) so you need a fallthrough case check on switch statements .

    * Your language doesn't have algebraic effects, so you need to pass context everywhere.

    I know someone will reply about Java's null annotation checking options, so here is one of them: https://github.com/uber/NullAway .

  • Will Project Valhalla bring Kotlin-like nulls to Java?
    1 project | /r/Kotlin | 9 Feb 2023
    If you must use Java, use Uber's Nullaway which gives null safety via Errorprone.
  • Retrofitting null-safety onto Java at Meta
    4 projects | news.ycombinator.com | 22 Nov 2022
    Does anyone have experience using this at Meta who can compare to https://github.com/uber/NullAway ?
  • How to use Java Records
    3 projects | dev.to | 18 Nov 2022
    A special kind of validation is enforcing that record fields are not null. (Un)fortunately, records do not have any special behavior regarding nullability. You can use tools like NullAway or Error Prone to prevent null in your code in general, or you can add checks to your records:
  • Backend Java 19 vs Kotlin?
    3 projects | /r/java | 31 Oct 2022
  • What does the future hold for Project Amber?
    3 projects | /r/java | 15 Sep 2022
    What do you think of https://github.com/uber/NullAway
  • Plans for Compile-time Null Pointer Safety?
    2 projects | /r/java | 16 Jul 2022
    Take a look at NullAway, a plugin for Error Prone.
  • Ask HN: What is a modern Java environment?
    22 projects | news.ycombinator.com | 29 Mar 2022
    PMD, Spotbugs, Nullaway: Java linting/static analysis (https://pmd.github.io, https://spotbugs.github.io, https://github.com/uber/NullAway)
  • Nullaway fully supports switch expressions without issues now in 0.9.5
    1 project | /r/java | 13 Jan 2022
  • What are some useful static analyzers for Java?
    9 projects | /r/java | 2 Jan 2022
    In personal projects, I've had good experiences using the error-prone compiler plugin with uber's nullaway.

What are some alternatives?

When comparing forbidden-apis and NullAway you can also consider the following projects:

jreleaser - :rocket: Release projects quickly and easily with JReleaser

SonarQube - Continuous Inspection

gradle-errorprone-plugin - Gradle plugin to use the error-prone compiler for Java

Error Prone - Catch common Java mistakes as compile-time errors

playforia-minigolf - Client & Server for Minigolf Game known from Playforia/Playray/Appeli. Written in Java.

infer - A static analyzer for Java, C, C++, and Objective-C

find-sec-bugs - The SpotBugs plugin for security audits of Java web applications and Android applications. (Also work with Kotlin, Groovy and Scala projects)

Spotbugs - SpotBugs is FindBugs' successor. A tool for static analysis to look for bugs in Java code.

rewrite - Automated mass refactoring of source code.

FindBugs - The new home of the FindBugs project

Checkstyle - Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard. By default it supports the Google Java Style Guide and Sun Code Conventions, but is highly configurable. It can be invoked with an ANT task and a command line program.