springBoot_freemark配置

Posted qichueng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springBoot_freemark配置相关的知识,希望对你有一定的参考价值。

Spring Boot test

1、添加依赖

<!-- 引入 spring-boot-starter-test 集成单元测试-->

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-test</artifactId>

<version>1.5.6.RELEASE</version>

</dependency>

 

2、编写单元测试类 

package com.springboot.junit;

 

import java.util.List;

 

import org.junit.Test;

import org.junit.runner.RunWith;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.boot.test.context.SpringBootTest;

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

 

import com.springboot.Application;

import com.springboot.domain.User;

import com.springboot.mapper.UserMapper;

 

@RunWith(SpringJUnit4ClassRunner.class)

@SpringBootTest(classes={Application.class})

public class UserTest {

@Autowired

private UserMapper userMapper;

 

@Test

public void testMapper() {

List<User> list = userMapper.findUserList();

System.out.println(list);

}

 

 

}

 

3、执行测试

 

以上是关于springBoot_freemark配置的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段11——vue路由的配置

VSCode自定义代码片段11——vue路由的配置

VS Code配置markdown代码片段

VS Code配置markdown代码片段

从零开始配置vim(27)——代码片段

从零开始配置vim(27)——代码片段