Hi Marten,
i thought the same.
But if I access the same RequestMapping twice (in this case /foo/bar), the second request will wait until the first one is finished.
How to handle that?
Best...
Type: Posts; User: d0x; Keyword(s):
Hi Marten,
i thought the same.
But if I access the same RequestMapping twice (in this case /foo/bar), the second request will wait until the first one is finished.
How to handle that?
Best...
Hi, is it possible to handle multiple requests at the same time?
If I execute the following example I see that the requests are queued and not processed in parallel.
@Controller...
As workaround we are using now the "External Tool Chain"-Configuration and the exec-maven-plugin.
But that's a ugly workaround.
With this we can just click the External Tool Chain button to...
Hi Saurabhjain,
i haven't specified the "jar=" property. I can't put an absolute path there. And maybe also a relative path is not good :(.
But i gave the jar-by-class property.
Like this:
...
Hi,
I created 2 Maven Projects:
com.ponyCircus
- application Context and everything else (like public static void main...)
com.ponyCircus.mr
- ExampleMapper
- ExampleReducer
Hi, we had the problem, that the Job instance instantiated by Spring haven't had the hbase.zookeeper.quorum property set we specified in the applicationContext.xml. We solved it by putting the hbase...
Thanks for looking up the needed dependencies. It's running without any problems now :).
This is the complete pom.xml that solves my problem.
<project...
This is my dependency tree:
[INFO] [dependency:tree {execution: default-cli}]
[INFO] com.example:com.example.main:jar:0.0.1-SNAPSHOT
[INFO] +-...
Hi,
I try to use Spring Data Hadoop with CDH4 to write a Map Reduce Job.
On startup, I get the following exception:
I guess there is a problem with my Hadoop related dependencies. I...