美文网首页
SpringMVC Junit 注解相关问题

SpringMVC Junit 注解相关问题

作者: 冰糖小新 | 来源:发表于2017-09-19 10:11 被阅读0次

使用Junit测试数据库的增删改查,DAO继承JPA,在SpringMVC框架下采用的@Autowired的方式添加DAO,所以用Junit进行测试的时候不能直接使用A a = new A();这样的方式实例化,也需要采用@Autowired的方式实例化;

如果未实例化会出现DAO使用不了JAP的接口。

实例化方法:
pom.xml 中添加:

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>3.2.3.RELEASE</version>
      <scope>test</scope>
    </dependency>

Junit自动生成在了test目录下:

自动生成方式参考网络

自动生成的Junit(片段)中加入:

import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@ContextConfiguration(locations = { "file:src/main/webapp/WEB-INF/mvc-dispatcher-servlet.xml" })
@RunWith(SpringJUnit4ClassRunner.class)
public class UserPrivateOpeImpTest {

    @Autowired
    private UserPrivateOpeImp userPrivateOpeImp;

其中需要注意的是ContextConfiguration添加 “SpringMVC配置文件” 路径格式

参考链接
查看注解文件路径
配置pom和注解文件
添加注解文件路径
Junit API

另外想问一下:在网上查找资料的时候看到了Android相关资料也有很多在使用Junit,也有相当多的注解,是有什么样的关联呢?

相关文章

  • SpringMVC Junit 注解相关问题

    使用Junit测试数据库的增删改查,DAO继承JPA,在SpringMVC框架下采用的@Autowired的方式添...

  • Spring Boot常用注解

    注解速览 配置加载相关 Bean 声明注解 Bean 注入注解 SpringMVC 注解 MyBatis 注解 配...

  • SpringMVC注解相关

    1、web容器在启动的时候,会扫描每个jar包下的META-INF/services/javax.servlet....

  • 4 注解

    1、Annotation(注解) 概述注解起到标识做用。比如Junit的@Test注解。Junit会在运行时检查方...

  • SpringBoot

    springBoot问题积累持续。。。 问题一: junit注解使用@Before不生效问题,初始化初始参数失败问...

  • springMvc执行流程

    springMvc概念springMvc请求流程springMvc组件详解springMvc常用注解springM...

  • SpringMVC 相关问题

    简书日更 第8篇: 重新学习SpringMVC 相关知识 文章导向 概述 什么是Spring MVC?简单介绍下你...

  • Junit暂时关闭某个test方法

    JUnit 提供注解 org.junit.Ignore 用于暂时忽略某个测试方法,如下图:

  • Junit单元测试 | 注解和执行顺序

    JUnit4注解基本介绍JUnit4 中@AfterClass @BeforeClass @after @befo...

  • 自动装配bean 2.2节

    使用junit测试,自动装配 不是junit测试的话,会在web.xml中配置识别注解的xml junit使用下面...

网友评论

      本文标题:SpringMVC Junit 注解相关问题

      本文链接:https://www.haomeiwen.com/subject/okfwsxtx.html