GithubHelp home page GithubHelp logo

Comments (5)

adamw avatar adamw commented on June 14, 2024

null values will probably either not work, or throw NullPointerException throughout sttp and other Scala libraries, as null is very rarely used (if at all) when writing Scala code. Alternatively, you can use an Option, which is very commonly used. So, your example would become basicRequest.header("name", map.get("field"))

from sttp.

wenhoujx avatar wenhoujx commented on June 14, 2024

@adamw thanks for the reply. it makes sense most scala libs use Option instead of risking having NPE.
Occasionally we use java class in scala and some outdated conventions may introduce null.
Our case was we get the http request header from log4j ThreadContext.get("correlction-id") , which returns null if missing.

Do you think it's the library caller's responsibility to check the null or is should be done in the library?

from sttp.

adamw avatar adamw commented on June 14, 2024

I very rarely see any questions / bug reports concerning nulls, so I think if you're interfacing with Java it's mainly the responsiblity of the wrapper layer - in this case, that would be in your app. You can always do Option(ThreadContext.get(...)) which correctly handles null results

from sttp.

wenhoujx avatar wenhoujx commented on June 14, 2024

sound good, thanks for the answers.

from sttp.

adamw avatar adamw commented on June 14, 2024

No problem, I'll close this then :)

from sttp.

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.