NetBeans constantly adds JacksonJsonProvider to my JAX-RS ApplicationConfig class -


netbeans (7.3.1 build 201306052037) adding following lines jax-rs applicationconfig class. don't want these lines added how tell stop?

        // following code can used customize jersey 1.x json provider:     try {         class jacksonprovider = class.forname("org.codehaus.jackson.jaxrs.jacksonjsonprovider");         resources.add(jacksonprovider);     } catch (classnotfoundexception ex) {         java.util.logging.logger.getlogger(getclass().getname()).log(java.util.logging.level.severe, null, ex);     } 

this bug in netbeans' webservice plugin (see this thread). fixed in version 7.4 of ide.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -