Could not autowire. No beans of 'ProductCategoryRepository' type found.

来源:4-1 买家类目-dao(上)

闲囩野鹤

2021-01-14

@RunWith(SpringRunner.class)
@SpringBootTest
public class ProductCategoryRepositoryTest {

@Autowired
private ProductCategoryRepository repository;

@Test
public void findOneTest() {
    ProductCategory productCategory = repository.findOne(1);
    System.out.println(productCategory.toString());
}

}

写回答

1回答

闲囩野鹤

提问者

2021-01-14

已经解决。
1、调整目录

2、版本不一致,所以语法不一致
//img.mukewang.com/szimg/600069e2097001fa12840655.jpg

0
0

Spring Boot双版本(1.5/2.1) 打造企业级微信点餐系统

从0到1开发中小型企业级Java应用,并学会迭代重构技巧

6410 学习 · 5247 问题

查看课程