-
The issue has to do with http://sparkjava.com/documentation#exception-mapping
I have confirmed that the same code that works fine with `2.7.2`, stops working with `2.8.0`, when running on Tomcat. …
-
Simply copy paste this script into a groovy file
```
import groovy.json.JsonOutput
@Grab(group='com.sparkjava', module='spark-core', version='2.7.1')
import static spark.Spark.*
get("/hell…
-
So I came a cross the similar situation to this question #973. I want to serve up some static files via sparkjava, with CORS enabled. But it seems that the "before" filter only works with specified ro…
-
## Environment Details
* MicroStream Version: 08.01.01-MS-GA
* JDK version: 17
* OS: Mac os
* Used frameworks: Quarkus 3.3.1
## Describe the bug
REST Interface does not start.
I'm getting t…
-
Java has its own REST libraries. Using raw HttpURLConnection is rather hardcore for sending a standard REST HTTP Request.
The most mainstream solutions are either Vert.x: https://vertx.io/blog/some-r…
-
Need a front end that can show messages with replies. Can be built recursively. Should display sorted by timestamp.
noah- updated
6 years ago
-
Is it possible to upload files with chinook? If we look at the Request type
data Request = Request { headers :: [(String, Maybe String)],
queryParams :: [(String, [String…
-
http://sparkjava.com/documentation#redirects, method doesn't seem to work when I try to add the trailing slash, e.g.,
```java
path("/url", () -> {
redirect.get("", "/");
get("/", ...);
…
-
Hi, I tried using spark in a maven project with eclipse and got the following error when running the app:
(using lubuntu 17.04 with eclipse oxygen and openjdk8)
```
Exception in thread "Thread-0"…
-
Java Spark framework uses embedded Jetty as as web server. Jetty supports connection pooling with tools such as HikariCP and provides [configuration options](http://www.eclipse.org/jetty/documentation…