我学习Spring,因为它似乎是一个非常强大的框架。我已经做了很多入门指南,现在我正在尝试this tutorial。在其中,所有类都放在同一个包中,但为了使它更有趣,我尝试根据类(实体,控制器等)使用不同的包。我打算在测试REST服务部分之前测试它,但是在构建应用程序时出错了。这就是我的项目结构:
与教程中的类的唯一区别在于initializr utility附带标记的ServletInitializer
(实际上我使用的是STS附带的那个,但它是相同的)。据我了解,它与问题无关,因此这个类的内容无关紧要。
与本教程的另一个细微差别是此处的Application
类称为RestServicesApplication
,但内容相同。
当我尝试构建应用程序时(使用Gradle' s bootRun
而不是Maven),我收到以下错误消息:
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of method init in com.example.restservices.RestServicesApplication required a bean of type 'com.example.repository.AccountRepository' that could not be found.
Action:
Consider defining a bean of type 'com.example.repository.AccountRepository' in your configuration.
:bootRun FAILED
所以我尝试用AccountRepository
注释@Bean
,但是它给了我一个编译错误,说明该地点不允许注释。接下来,我尝试使用@Component
注释(也在BookmarkRepository
上)并在@ComponentScan("com.example")
中添加RestServicesApplication
。之后错误仍然存在,但消息更改为
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in com.example.controller.BookmarkRestController required a bean of type 'com.example.repository.BookmarkRepository' that could not be found.
Action:
Consider defining a bean of type 'com.example.repository.BookmarkRepository' in your configuration.
:bootRun FAILED
我向@Component
添加了BookmarkRestController
注释,但仍然存在相同的错误消息。我在这里缺少什么?
提前感谢您的回答。
问题涉及的类如下(从我的项目中复制,而不是教程中的那些,尽管差异很小):
RestServicesApplication
package com.example.restservices;
import java.util.Arrays;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import com.example.entity.Account;
import com.example.entity.Bookmark;
import com.example.repository.AccountRepository;
import com.example.repository.BookmarkRepository;
@SpringBootApplication
@ComponentScan("com.example")
public class RestServicesApplication {
public static void main(final String[] args) {
SpringApplication.run(RestServicesApplication.class, args);
}
@Bean
CommandLineRunner init(final AccountRepository accountRepository,
final BookmarkRepository bookmarkRepository) {
return (evt) -> Arrays.asList(
"jhoeller,dsyer,pwebb,ogierke,rwinch,mfisher,mpollack,jlong".split(","))
.forEach(
a -> {
final Account account = accountRepository.save(new Account(a,
"password"));
bookmarkRepository.save(new Bookmark(account,
"http://bookmark.com/1/" + a, "A description"));
bookmarkRepository.save(new Bookmark(account,
"http://bookmark.com/2/" + a, "A description"));
});
}
}
BookmarkRestController
package com.example.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.example.repository.AccountRepository;
import com.example.repository.BookmarkRepository;
@RestController
@RequestMapping("/{userId}/bookmarks")
public class BookmarkRestController {
private final BookmarkRepository bookmarkRepository;
private final AccountRepository accountRepository;
@Autowired
public BookmarkRestController(final BookmarkRepository bookmarkRepository,
final AccountRepository accountRepository) {
this.bookmarkRepository = bookmarkRepository;
this.accountRepository = accountRepository;
}
// @RequestMapping methods...
}
AccountRepository
package com.example.repository;
import java.util.Optional;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Component;
import com.example.entity.Account;
@Component
public interface AccountRepository extends JpaRepository<Account, Long> {
Optional<Account> findByUsername(String username);
}
BookmarkRepository
package com.example.repository;
import java.util.Collection;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Component;
import com.example.entity.Bookmark;
@Component
public interface BookmarkRepository extends JpaRepository<Bookmark, Long> {
Collection<Bookmark> findByAccountUsername(String username);
}
注意:我添加了导入,因此您可以看到类和注释的来源
我尝试了另一件事:我重构了我的项目以适应教程,我将everithing放在同一个包(com.example.bookmarks
)中并删除了额外的注释。项目编译,但是当我运行项目时,我在尝试访问REST服务时获得404
HTTP状态。我仍然对使用我的原始结构运行感兴趣,但我想告诉您这个重构使项目工作。
答案 0 :(得分:1)
要让Spring创建一个实现JpaRepository接口的bean,您需要使用Spring JPA命名空间并使用适当的元素激活存储库支持。在xml中:
<jpa:repositories base-package="com.example.repository" />
在注释中:
@EnableJpaRepositories
请参阅this docs
这将扫描com.example.repository
下面的所有包,以查找扩展JpaRepository
的接口,并为其创建一个由SimpleJpaRepository实现支持的Spring bean。
答案 1 :(得分:0)
我认为你必须再次创建包。包装看起来不对。重新创建包