91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么給Spring3 MVC中的Action做JUnit單元測試

發布時間:2021-09-18 18:35:39 來源:億速云 閱讀:175 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關怎么給Spring3 MVC中的Action做JUnit單元測試的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

使用了spring3 MVC后,給action做單元測試也很方便,我以前從來不給action寫單元測試的,再在不同了,方便了,所以一定要寫。

JUnitActionBase類是所有JUnit的測試類的父類

package test;    import javax.servlet.http.HttpServletRequest;    import javax.servlet.http.HttpServletResponse;    import org.junit.BeforeClass;    import org.springframework.mock.web.MockServletContext;    import org.springframework.web.context.WebApplicationContext;    import org.springframework.web.context.support.XmlWebApplicationContext;    import org.springframework.web.servlet.HandlerAdapter;    import org.springframework.web.servlet.HandlerExecutionChain;    import org.springframework.web.servlet.HandlerMapping;    import org.springframework.web.servlet.ModelAndView;    import org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter;    import org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping;    /**    * 說明: JUnit測試action時使用的基類   *    * @author  趙磊   * @version 創建時間:2011-2-2 下午10:27:03     */     public class JUnitActionBase {        private static HandlerMapping handlerMapping;        private static HandlerAdapter handlerAdapter;        /**        * 讀取spring3 MVC配置文件        */        @BeforeClass     public static void setUp() {            if (handlerMapping == null) {                String[] configs = { "file:src/springConfig/springMVC.xml" };                XmlWebApplicationContext context = new XmlWebApplicationContext();                context.setConfigLocations(configs);                MockServletContext msc = new MockServletContext();                context.setServletContext(msc);         context.refresh();                msc.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, context);                handlerMapping = (HandlerMapping) context                        .getBean(DefaultAnnotationHandlerMapping.class);                handlerAdapter = (HandlerAdapter) context.getBean(context.getBeanNamesForType(AnnotationMethodHandlerAdapter.class)[0]);               }        }            /**        * 執行request對象請求的action        *         * @param request        * @param response        * @return        * @throws Exception        */        public ModelAndView excuteAction(HttpServletRequest request, HttpServletResponse response)     throws Exception {            HandlerExecutionChain chain = handlerMapping.getHandler(request);            final ModelAndView model = handlerAdapter.handle(request, response,                    chain.getHandler());            return model;        }    }

更多關系Spring的信息

Spring 論壇  http://www.itchm.com/forum-59-1.html

這是個JUnit測試類,我們可以new Request對象,來參與測試,太方便了。給request指定訪問的URL,就可以請求目標Action了。

package test.com.app.user;    import org.junit.Assert;    import org.junit.Test;    import org.springframework.mock.web.MockHttpServletRequest;    import org.springframework.mock.web.MockHttpServletResponse;    import org.springframework.web.servlet.ModelAndView;        import test.JUnitActionBase;        /**    * 說明: 測試OrderAction的例子   *    * @author  趙磊    * @version 創建時間:2011-2-2 下午10:26:55     */         public class TestOrderAction extends JUnitActionBase {        @Test        public void testAdd() throws Exception {        MockHttpServletRequest request = new MockHttpServletRequest();            MockHttpServletResponse response = new MockHttpServletResponse();            request.setRequestURI("/order/add");            request.addParameter("id", "1002");            request.addParameter("date", "2010-12-30");            request.setMethod("POST");            // 執行URI對應的action            final ModelAndView mav = this.excuteAction(request, response);            // Assert logic            Assert.assertEquals("order/add", mav.getViewName());            String msg=(String)request.getAttribute("msg");            System.out.println(msg);        }    }

需要說明一下 :由于當前最想版本的Spring(Test) 3.0.5還不支持@ContextConfiguration的注解式context file注入,所以還需要寫個setUp處理下,否則類似于Tiles的加載過程會有錯誤,因為沒有ServletContext。3.1的版本應該有更好的解決方案。

感謝各位的閱讀!關于“怎么給Spring3 MVC中的Action做JUnit單元測試”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

达日县| 新巴尔虎左旗| 大余县| 安平县| 汨罗市| 斗六市| 嘉黎县| 武陟县| 翼城县| 康马县| 南岸区| 白城市| 图木舒克市| 凌云县| 随州市| 浦城县| 宜良县| 葵青区| 乌兰察布市| 淅川县| 麻江县| 马公市| 西乡县| 冕宁县| 汉中市| 仁怀市| 中江县| 惠州市| 栾川县| 民权县| 郓城县| 桦南县| 东乌| 沂南县| 博爱县| 汉寿县| 逊克县| 玉屏| 珠海市| 桦甸市| 读书|