首页 > 编程语言 > 详细

spring boot 笔记

时间:2017-10-22 19:20:33      阅读:249      评论:0      收藏:0      [点我收藏+]

1、junit 不需要开启页面进行测试,启动junit需要加载以下2个引用@RunWith(SpringRunner.class),@SpringBootTest@Test 每个测试类都需要加上一个,选中启动即可。

test测试包必须在启动类的子包里面。

技术分享

 

package com.web.test;

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.SpringRunner;

import com.web.shop.bo.Shop;
import com.web.shop.dao.ShopDao;
import com.web.shop.service.ShopService;
import com.web.user.bo.User;
import com.web.user.service.UserService;

@RunWith(SpringRunner.class)
@SpringBootTest
public class MyTest {
    @Autowired
    UserService userService;
    @Autowired
    ShopService shopService;
    @Autowired
    ShopDao dao;

    @Test
    public void testLogin(){
        User u = userService.login("123", "1231");
        System.out.println(u);
        
    }
    @Test
    public void shopQuery(){
        List<Shop> ss = dao.queryShops();
        for(Shop s : ss){
            System.out.println(s.getName());
        }
    }

}

2、外部跳转使用redirect:/

 

spring boot 笔记

原文:http://www.cnblogs.com/hufeng1989/p/7710817.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!