How can I enable MultiPartFeature?
My JAX-RS application has an extended Application class. @ApplicationPath("/") public class MyApplication extends Application { // empty; really empty } How can I enable org.glassfish.jersey.media.multipart.MultiPartFeature without modifying the class? Or without the necessity of registering all resource classes/packages? Paul Samsotha Not sure why you don't just use a ResourceConfig instead of an Application class. The only reason I can think of is portability, but the use of the Jersey specific multipart feature already breaks that portability. But anyway, I'll try to answer this in the