java.lang.NoClassDefFoundError: javax/el/PropertyNotFoundException when I send invalid values to controller

后端 未结 4 2134
你的背包
你的背包 2021-02-07 22:54

I use MockMvc for my controller testing

@Test
    public void updateEvent() throws Exception{
        MockHttpServletRequestBuilder request = MockMvcRequestBuild         


        
4条回答
  •  北荒
    北荒 (楼主)
    2021-02-07 23:22

    Add the following to your pom.

    
      org.glassfish.web
      el-impl
      2.2.6
      test
    
    

    It will resolve the need for javax.el. Current version is 2.2.6

提交回复
热议问题