Giter Site home page Giter Site logo

Comments (3)

jansupol avatar jansupol commented on June 24, 2024

I do not believe the bug is in Jersey. The InputStream has a strong contract, and the contract says

@throws IOException if an I/O error occurs.

Early EOF sounds exactly like an I/O error. So this is Jetty that does not follow the contract during HttpInput#read.

We could wrap each IO operation into a try-catch, but that's just crazy - if one method can break the contract, any method can do it, and we would need to wrap all the methods into a try-catch, every single InputStream and OutputStream method used in all the places within the project.

from jersey.

LarsKrogJensen avatar LarsKrogJensen commented on June 24, 2024

ok, closing

from jersey.

joakime avatar joakime commented on June 24, 2024

@jansupol Note, InputStream implementation can throw far far more than IOException.

It can throw any IllegalArgumentException, OutOfMemoryException, NullPointerException, IndexOutOfBandException, and countless more. (check the implementation of InputStream.java in the openjdk source, and you'll find them easily. Also note that InputStream.java uses Objects.java in many places which increases the number of RuntimeExceptions you can get)

And then there's the implementations of the InputStream class (it's abstract ya know) that can throw all manner of RuntimeException as well.

from jersey.

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.