REST JAX-RS javax.ws.rs.ProcessingException:

后端 未结 3 1397
名媛妹妹
名媛妹妹 2021-01-02 04:54

I am getting below exception whenever my REST client code makes a call to the REST service using below code: Code:

public void putWatcher(Wa         


        
3条回答
  •  旧巷少年郎
    2021-01-02 05:22

    I recently bumped into this problem. It was caused by a library providing an old implementation of javax.ws.rs.core. I fixed it as follows:

        
            org.apache.axis2
            axis2-jaxws
            1.6.2
            runtime
            
                
                
                    javax.ws.rs
                    jsr311-api
                
            
        
    

提交回复
热议问题