0

I don't know what library I should include to be able to use @PartType("application/json") annotation when outputing multipart/mixed data with resteasy.

myro
  • 1,158
  • 2
  • 25
  • 44

1 Answers1

0

If you're using maven, add this dependency to your pom.xml:

<dependency>
    <groupId>org.jboss.resteasy</groupId>
    <artifactId>resteasy-multipart-provider</artifactId>
    <version>2.2.1.GA</version>
</dependency>

If you're not using maven, add the resteasy-multipart-provider-2.2.1.GA.jar to your classpath.

eiden
  • 2,329
  • 19
  • 19