@javax.ws.rs.Path(“/bookstore/books/{bookID}”)
public class Book {
@javax.ws.rs.GET
public String informationMethod(String user) {
...
throw new Exception("Error");
....
}
}
@Provider
public class SomeMapper implements ExceptionMapper<Exception> {
@Override
public Response toResponse(Exception ex) {
//a way to get the method name that threw the exception.
//In the above example is: informationMethod.
String methodName = //informationMethod
return Response.status(500).entity(ex.getMessage()).type("text/plain")
.build();
}
}
您可以为ExcpetionMapper
提供上下文中的一些信息。
package your.rest.pckg;
import java.lang.reflect.Method;
import java.net.URI;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.ws.rs.Path;
import javax.ws.rs.container.ResourceInfo;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.UriBuilder;
import javax.ws.rs.core.UriInfo;
import javax.ws.rs.ext.ExceptionMapper;
import javax.ws.rs.ext.Provider;
@Provider
public class SomeMapper
implements ExceptionMapper<Exception>
{
@Context private HttpServletRequest request;
@Context private HttpServletResponse response;
@Context private ResourceInfo resourceInfo;
@Context private UriInfo uriInfo;
@Override
public Response toResponse( Exception ex )
{
String method = request.getMethod();
String pathInfo = request.getPathInfo();
Class<?> resourceClass = resourceInfo.getResourceClass();
Method resourceMethod = resourceInfo.getResourceMethod();
URI resourcePath = getResourcePath( resourceClass, resourceMethod );
URI requestUri = uriInfo.getRequestUri();
MultivaluedMap<String, String> pathParams = uriInfo.getPathParameters();
MultivaluedMap<String, String> queryParams = uriInfo.getQueryParameters();
// define your object to provide data through response
Object responseEntity = ex.getMessage();
// do your stuff
return Response.status( Response.Status.INTERNAL_SERVER_ERROR )
.entity( responseEntity )
.type( MediaType.APPLICATION_JSON )
.build();
}
private static URI getResourcePath( Class<?> clazz, Method method )
{
if ( clazz == null || !clazz.isAnnotationPresent( Path.class ) )
{
return null;
}
UriBuilder builder = UriBuilder.fromResource( clazz );
if ( method != null && method.isAnnotationPresent( Path.class ) )
{
builder.path( method );
}
return builder.build();
}
}
见
if (ex instanceof WebApplicationException)
{
return (( (WebApplicationException) ex ).getResponse());
}
在你可以捕获异常之前,一些代码必须抛出一个异常。任何代码都可能会抛出异常:您的代码,来自其他人编写的包(例如Java平台附带的包)或Java运行时环境的代码。无论是什么引发的异常,它总是通过 throw 语句抛出。 您可能已经注意到,Java平台提供了许多异常类。所有类都是Throwable类的后代,并且都允许程序区分在程序执行期间可能发生的各种类型的异常。 您还可以创建自己的异常类来表示在您编写
我的问题是:我如何只通过分析字节码就知道被抛出的异常的类型? 值得一提的是,当我们调用源代码中的throw语句时,并不总是会实例化一个新的异常类型。因此,查看新指令的参数类型并不是一个解决方案。
问题内容: 我有这样的方法: 我想抛出一个内。编译器不允许我这样做,因为不允许将我的方法扔在那里。但是我需要抛出一个的子类来进行测试 (我不能抛出Unchecked)。显然这是一个hack,但我需要进行测试。我尝试过EasyMock,但它也不允许我这样做。任何想法如何做到这一点? 谢谢,肖恩·阮 问题答案: 方法1: Alexey Ragozin的这篇文章介绍了如何使用泛型技巧引发未声明的检查异常
我知道JVM有一个异常表,它映射在给定字节码索引中可以抛出的可能异常。我还读到athrow字节码抛出了堆栈顶部存在的引用类型的exception。我的问题更多地涉及像irem这样的指令如何“抛出”异常。 JVM是否会在每次指令执行后检查堆栈的顶部,以检查是否存在异常?如果你能洞察到这件事的话,你会很感激的。
我有一个类,它有一个方法。我正在做相应的测试,但是我还不能验证是否抛出了定制的异常,我使用的是JUnit5。 我已经复习了这里,但答案并没有帮助我,这是我根据一个示例编写的代码:
抛出异常的行为是否可能抛出不同的异常? 为了抛出异常,必须(可选地)分配新对象,并调用其构造函数(隐式调用fillinstacktrace)。在某些情况下,听起来像addSupressed也被称为。那么如果没有足够的内存会发生什么呢?JVM是否需要预分配内置异常?例如,(1/0)会抛出OutOfMemoryError而不是ArithmeticException吗? 此外,构造函数是一个方法调用,因