spring boot 笔记

Posted

tags:

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

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 笔记的主要内容,如果未能解决你的问题,请参考以下文章

一张图,理顺 Spring Boot应用在启动阶段执行代码的几种方式

一张图帮你记忆,Spring Boot 应用在启动阶段执行代码的几种方式

一张图,理顺 Spring Boot应用在启动阶段执行代码的几种方式

一张图,理顺 Spring Boot应用在启动阶段执行代码的几种方式

Spring Boot实战笔记-- Spring高级话题(组合注解与元注解)

Vue + Spring Boot 项目实战笔记