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、版本不一致,所以语法不一致
00
相似问题