GithubHelp home page GithubHelp logo

ratpack's People

Contributors

aalmiray avatar chochos avatar clmarquart avatar dima767 avatar esumerfd avatar hindsholm avatar jacobrogers avatar johnnywey avatar justinvoss avatar jwill avatar ldaley avatar pstehlik avatar raymyers avatar tlberglund avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

ratpack's Issues

Add JSON Processing

When type is application/json, it would be nice if Ratpack would allow direct posting of the JSON data including auto-deserialization using JsonSlurper.

Setup TravisCI

Since Ratpack now has some tests, we should be running them when the project changes. Set up a build in TravisCI for great justice.

Params and URLParams not thread safe

It appears 'params' and 'urlparams' are not thread safe.

If a second request comes into a request handler while the previous one is still processing, the value of 'params' and 'urlparams' are replaced in the namespace of the original request.

To see this in action, run the following Ratpack application and hit the method concurrently from two different web browsers.

get('/testing') {

    def number = (new Random()).nextLong()

    println "Start " + Thread.currentThread().getId() + ' == ' + params.value

    Thread.sleep(2000)

    println "End " + Thread.currentThread().getId() + ' == ' + params.value

    return "Value: " + params.value + ' - ' + number

}

in Firefox goto http://localhost:5000/testing?value=Firefox
in Chrome goto http://localhost:5000/testing?value=Chrome

Refresh both pages quickly, and you'll find it returns the query string parameter from the second request in both browsers.

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.