org.springframework.web.servlet.ModelAndView.isEmpty()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(12.2k)|赞(0)|评价(0)|浏览(121)

本文整理了Java中org.springframework.web.servlet.ModelAndView.isEmpty()方法的一些代码示例,展示了ModelAndView.isEmpty()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ModelAndView.isEmpty()方法的具体详情如下:
包路径:org.springframework.web.servlet.ModelAndView
类名称:ModelAndView
方法名:isEmpty

ModelAndView.isEmpty介绍

[英]Return whether this ModelAndView object is empty, i.e. whether it does not hold any view and does not contain a model.
[中]返回此ModelAndView对象是否为空,即它是否不包含任何视图且不包含模型。

代码示例

代码示例来源:origin: spring-projects/spring-framework

/**
 * Return whether this ModelAndView object is empty as a result of a call to {@link #clear}
 * i.e. whether it does not hold any view and does not contain a model.
 * <p>Returns {@code false} if any additional state was added to the instance
 * <strong>after</strong> the call to {@link #clear}.
 * @see #clear()
 */
public boolean wasCleared() {
  return (this.cleared && isEmpty());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void handleConversionNotSupportedException() throws Exception {
  ConversionNotSupportedException ex =
      new ConversionNotSupportedException(new Object(), String.class, new Exception());
  ModelAndView mav = exceptionResolver.resolveException(request, response, null, ex);
  assertNotNull("No ModelAndView returned", mav);
  assertTrue("No Empty ModelAndView returned", mav.isEmpty());
  assertEquals("Invalid status code", 500, response.getStatus());
  // SPR-9653
  assertSame(ex, request.getAttribute("javax.servlet.error.exception"));
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void handleBindException() throws Exception {
  BindException ex = new BindException(new Object(), "name");
  ModelAndView mav = exceptionResolver.resolveException(request, response, null, ex);
  assertNotNull("No ModelAndView returned", mav);
  assertTrue("No Empty ModelAndView returned", mav.isEmpty());
  assertEquals("Invalid status code", 400, response.getStatus());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void resolveExceptionControllerAdviceNoHandler() throws Exception {
  AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MyControllerAdviceConfig.class);
  this.resolver.setApplicationContext(ctx);
  this.resolver.afterPropertiesSet();
  IllegalStateException ex = new IllegalStateException();
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, null, ex);
  assertNotNull("Exception was not handled", mav);
  assertTrue(mav.isEmpty());
  assertEquals("DefaultTestExceptionResolver: IllegalStateException", this.response.getContentAsString());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void handleMissingServletRequestPartException() throws Exception {
  MissingServletRequestPartException ex = new MissingServletRequestPartException("name");
  ModelAndView mav = exceptionResolver.resolveException(request, response, null, ex);
  assertNotNull("No ModelAndView returned", mav);
  assertTrue("No Empty ModelAndView returned", mav.isEmpty());
  assertEquals("Invalid status code", 400, response.getStatus());
  assertTrue(response.getErrorMessage().contains("request part"));
  assertTrue(response.getErrorMessage().contains("name"));
  assertTrue(response.getErrorMessage().contains("not present"));
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void resolveExceptionGlobalHandler() throws Exception {
  AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MyConfig.class);
  this.resolver.setApplicationContext(ctx);
  this.resolver.afterPropertiesSet();
  IllegalAccessException ex = new IllegalAccessException();
  HandlerMethod handlerMethod = new HandlerMethod(new ResponseBodyController(), "handle");
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, ex);
  assertNotNull("Exception was not handled", mav);
  assertTrue(mav.isEmpty());
  assertEquals("AnotherTestExceptionResolver: IllegalAccessException", this.response.getContentAsString());
}

代码示例来源:origin: spring-projects/spring-framework

@Test  // SPR-12605
public void resolveExceptionWithHandlerMethodArg() throws Exception {
  AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MyConfig.class);
  this.resolver.setApplicationContext(ctx);
  this.resolver.afterPropertiesSet();
  ArrayIndexOutOfBoundsException ex = new ArrayIndexOutOfBoundsException();
  HandlerMethod handlerMethod = new HandlerMethod(new ResponseBodyController(), "handle");
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, ex);
  assertNotNull("Exception was not handled", mav);
  assertTrue(mav.isEmpty());
  assertEquals("HandlerMethod: handle", this.response.getContentAsString());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void resolveExceptionGlobalHandlerOrdered() throws Exception {
  AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MyConfig.class);
  this.resolver.setApplicationContext(ctx);
  this.resolver.afterPropertiesSet();
  IllegalStateException ex = new IllegalStateException();
  HandlerMethod handlerMethod = new HandlerMethod(new ResponseBodyController(), "handle");
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, ex);
  assertNotNull("Exception was not handled", mav);
  assertTrue(mav.isEmpty());
  assertEquals("TestExceptionResolver: IllegalStateException", this.response.getContentAsString());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void resolveExceptionControllerAdviceHandler() throws Exception {
  AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MyControllerAdviceConfig.class);
  this.resolver.setApplicationContext(ctx);
  this.resolver.afterPropertiesSet();
  IllegalStateException ex = new IllegalStateException();
  HandlerMethod handlerMethod = new HandlerMethod(new ResponseBodyController(), "handle");
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, ex);
  assertNotNull("Exception was not handled", mav);
  assertTrue(mav.isEmpty());
  assertEquals("BasePackageTestExceptionResolver: IllegalStateException", this.response.getContentAsString());
}

代码示例来源:origin: spring-projects/spring-framework

@Test  // SPR-16496
public void resolveExceptionControllerAdviceAgainstProxy() throws Exception {
  AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MyControllerAdviceConfig.class);
  this.resolver.setApplicationContext(ctx);
  this.resolver.afterPropertiesSet();
  IllegalStateException ex = new IllegalStateException();
  HandlerMethod handlerMethod = new HandlerMethod(new ProxyFactory(new ResponseBodyController()).getProxy(), "handle");
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, ex);
  assertNotNull("Exception was not handled", mav);
  assertTrue(mav.isEmpty());
  assertEquals("BasePackageTestExceptionResolver: IllegalStateException", this.response.getContentAsString());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void resolveExceptionModelAndView() throws NoSuchMethodException {
  IllegalArgumentException ex = new IllegalArgumentException("Bad argument");
  HandlerMethod handlerMethod = new HandlerMethod(new ModelAndViewController(), "handle");
  this.resolver.afterPropertiesSet();
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, ex);
  assertNotNull(mav);
  assertFalse(mav.isEmpty());
  assertEquals("errorView", mav.getViewName());
  assertEquals("Bad argument", mav.getModel().get("detail"));
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void handleMethodArgumentNotValid() throws Exception {
  BeanPropertyBindingResult errors = new BeanPropertyBindingResult(new TestBean(), "testBean");
  errors.rejectValue("name", "invalid");
  MethodParameter parameter = new MethodParameter(this.getClass().getMethod("handle", String.class), 0);
  MethodArgumentNotValidException ex = new MethodArgumentNotValidException(parameter, errors);
  ModelAndView mav = exceptionResolver.resolveException(request, response, null, ex);
  assertNotNull("No ModelAndView returned", mav);
  assertTrue("No Empty ModelAndView returned", mav.isEmpty());
  assertEquals("Invalid status code", 400, response.getStatus());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void handleTypeMismatch() {
  TypeMismatchException ex = new TypeMismatchException("foo", String.class);
  ModelAndView mav = exceptionResolver.resolveException(request, response, null, ex);
  assertNotNull("No ModelAndView returned", mav);
  assertTrue("No Empty ModelAndView returned", mav.isEmpty());
  assertEquals("Invalid status code", 400, response.getStatus());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void resolveExceptionResponseBody() throws UnsupportedEncodingException, NoSuchMethodException {
  IllegalArgumentException ex = new IllegalArgumentException();
  HandlerMethod handlerMethod = new HandlerMethod(new ResponseBodyController(), "handle");
  this.resolver.afterPropertiesSet();
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, ex);
  assertNotNull(mav);
  assertTrue(mav.isEmpty());
  assertEquals("IllegalArgumentException", this.response.getContentAsString());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void resolveExceptionResponseWriter() throws Exception {
  IllegalArgumentException ex = new IllegalArgumentException();
  HandlerMethod handlerMethod = new HandlerMethod(new ResponseWriterController(), "handle");
  this.resolver.afterPropertiesSet();
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, ex);
  assertNotNull(mav);
  assertTrue(mav.isEmpty());
  assertEquals("IllegalArgumentException", this.response.getContentAsString());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void handleServletRequestBindingException() {
  String message = "Missing required value - header, cookie, or pathvar";
  ServletRequestBindingException ex = new ServletRequestBindingException(message);
  ModelAndView mav = exceptionResolver.resolveException(request, response, null, ex);
  assertNotNull("No ModelAndView returned", mav);
  assertTrue("No Empty ModelAndView returned", mav.isEmpty());
  assertEquals("Invalid status code", 400, response.getStatus());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void handleHttpMessageNotWritable() {
  HttpMessageNotWritableException ex = new HttpMessageNotWritableException("foo");
  ModelAndView mav = exceptionResolver.resolveException(request, response, null, ex);
  assertNotNull("No ModelAndView returned", mav);
  assertTrue("No Empty ModelAndView returned", mav.isEmpty());
  assertEquals("Invalid status code", 500, response.getStatus());
}

代码示例来源:origin: spring-projects/spring-framework

private void assertResolved(ModelAndView mav, int status, String reason) {
  assertTrue("No Empty ModelAndView returned", mav != null && mav.isEmpty());
  assertEquals(status, response.getStatus());
  assertEquals(reason, response.getErrorMessage());
  assertTrue(response.isCommitted());
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void handleHttpMediaTypeNotSupported() {
  HttpMediaTypeNotSupportedException ex = new HttpMediaTypeNotSupportedException(new MediaType("text", "plain"),
      Collections.singletonList(new MediaType("application", "pdf")));
  ModelAndView mav = exceptionResolver.resolveException(request, response, null, ex);
  assertNotNull("No ModelAndView returned", mav);
  assertTrue("No Empty ModelAndView returned", mav.isEmpty());
  assertEquals("Invalid status code", 415, response.getStatus());
  assertEquals("Invalid Accept header", "application/pdf", response.getHeader("Accept"));
}

代码示例来源:origin: spring-projects/spring-framework

@Test
public void handleMissingServletRequestParameter() {
  MissingServletRequestParameterException ex = new MissingServletRequestParameterException("foo", "bar");
  ModelAndView mav = exceptionResolver.resolveException(request, response, null, ex);
  assertNotNull("No ModelAndView returned", mav);
  assertTrue("No Empty ModelAndView returned", mav.isEmpty());
  assertEquals("Invalid status code", 400, response.getStatus());
  assertEquals("Required bar parameter 'foo' is not present", response.getErrorMessage());
}

相关文章