我有一个使用jersey-api开发的网络服务。
我正在使用rest-assured来测试资源。当我运行我的测试用例时,我得到以下异常。
[http-bio-8080-exec-1] ERROR T:[] V:[] c.s.j.spi.container.ContainerRequest - A message body reader for Java class ... and MIME media type application/octet-stream was not found.
The registered message body readers compatible with the MIME media type are:
application/octet-stream ->
com.sun.jersey.core.impl.provider.entity.ByteArrayProvider
com.sun.jersey.core.impl.provider.entity.FileProvider
com.sun.jersey.core.impl.provider.entity.InputStreamProvider
com.sun.jersey.core.impl.provider.entity.DataSourceProvider
我知道我需要配置我的提供程序类。我不确定如何在保证中配置提供程序类?我无法找到有关在rest-assured中配置jersey“com.sun.jersey.config.property.classnames”的任何信息。
非常感谢任何帮助。