users@grizzly.java.net

Re: Problem sending a large Json object form grizzly

From: Oleksiy Stashok <oleksiy.stashok_at_oracle.com>
Date: Fri, 09 Jan 2015 18:21:32 -0800

Well, the only suspicious thing I see is that you specify the version
for Grizzly connection-pool, which is 2.3.14, which may mismatch with
Grizzly version from Jersey dependencies.
If it's not the case - you can create a testcase on github - I'll take a
look and try to help.

WBR,
Alexey.

On 09.01.15 18:06, Surah wrote:
>
> oleksiys wrote
>> Hi,
>>
>> it looks like some Grizzly versions mismatch, may be you use Grizzly
>> modules from different Grizzly releases?
>>
>> WBR,
>> Alexey.
> I think the same, but i downgrade some molues versions to try to solve this
> posible mismatch, but dont works.
>
> This is my pom.xml dependencies.
>
>
>
>
> <dependencyManagement>
> <dependencies>
> <dependency>
> <groupId>org.glassfish.jersey</groupId>
> <artifactId>jersey-bom</artifactId>
> <version>2.4.1</version>
>
> <type>pom</type>
> <scope>import</scope>
> </dependency>
> </dependencies>
> </dependencyManagement>
>
>
> <dependencies>
>
> <dependency>
> <groupId>org.hibernate</groupId>
> <artifactId>hibernate-core</artifactId>
> <version>4.2.6.Final</version>
> </dependency>
> <dependency>
> <groupId>org.hibernate.common</groupId>
> <artifactId>hibernate-commons-annotations</artifactId>
> <version>4.0.4.Final</version>
> </dependency>
> <dependency>
> <groupId>org.slf4j</groupId>
> <artifactId>slf4j-log4j12</artifactId>
> <version>1.7.5</version>
> </dependency>
> <dependency>
> <groupId>mysql</groupId>
> <artifactId>mysql-connector-java</artifactId>
> <version>5.1.26</version>
> </dependency>
>
>
> <dependency>
> <groupId>org.springframework</groupId>
> <artifactId>spring-core</artifactId>
> <version>4.1.1.RELEASE</version>
> </dependency>
> <dependency>
> <groupId>org.springframework</groupId>
> <artifactId>spring-context</artifactId>
> <version>4.1.1.RELEASE</version>
> </dependency>
> <dependency>
> <groupId>org.springframework</groupId>
> <artifactId>spring-orm</artifactId>
> <version>4.1.1.RELEASE</version>
> </dependency>
> <dependency>
> <groupId>org.springframework</groupId>
> <artifactId>spring-test</artifactId>
> <version>4.1.1.RELEASE</version>
> <scope>test</scope>
> </dependency>
>
>
>
> <dependency>
> <groupId>org.glassfish.jersey.containers</groupId>
> <artifactId>jersey-container-grizzly2-http</artifactId>
> </dependency>
> <dependency>
> <groupId>org.glassfish.jersey.media</groupId>
> <artifactId>jersey-media-json-jackson</artifactId>
> </dependency>
>
> <dependency>
> <groupId>org.glassfish.grizzly</groupId>
> <artifactId>connection-pool</artifactId>
> <version>2.3.14</version>
> </dependency>
>
> <dependency>
> <groupId>com.thetransactioncompany</groupId>
> <artifactId>cors-filter</artifactId>
> <version>2.2.1</version>
> </dependency>
>
> <dependency>
> <groupId>junit</groupId>
> <artifactId>junit</artifactId>
> <version>4.9</version>
> <scope>test</scope>
> </dependency>
>
>
> <dependency>
> <groupId>javax.mail</groupId>
> <artifactId>mail</artifactId>
> <version>1.4.7</version>
> </dependency>
>
> <dependency>
> <groupId>com.sun.jersey</groupId>
> <artifactId>jersey-server</artifactId>
> <version>1.18.3</version>
>
> </dependency>
>
> <dependency>
> <groupId>org.apache.tomcat</groupId>
> <artifactId>tomcat-jdbc</artifactId>
> <version>7.0.35</version>
> </dependency>
>
> <dependency>
> <groupId>commons-dbcp</groupId>
> <artifactId>commons-dbcp</artifactId>
> <version>1.2.2</version>
> </dependency>
>
>
> </dependencies>
>
>
>
>
> --
> View this message in context: http://grizzly.1045725.n5.nabble.com/Problem-sending-a-large-Json-object-form-grizzly-tp5710658p5710663.html
> Sent from the Grizzly - Users mailing list archive at Nabble.com.