@SpringBootApplication
@ComponentScan(basePackages = { "com.ns.services.search", "com.ns.services.commons.exceptions" })
@EnableSolrRepositories(value = "com.ns.services.search", schemaCreationSupport = true, multicoreSupport = true)
@EnableSwagger2
public class SearchServiceApplication {
public static void main(String[] args) {
SpringApplication.run(SearchServiceApplication.class, args);
}
@Bean
public HttpSolrClient solrClient() {
return new HttpSolrClient("http://localhost:8983/solr");
}
@Bean
public SolrTemplate solrTemplate(SolrClient client) throws Exception {
return new SolrTemplate(client);
}
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2).select().apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any()).build();
}
@Bean
public SolrTemplate bookTemplate() throws Exception {
SolrTemplate solrTemplate = new SolrTemplate(solrClient());
solrTemplate.setSolrCore("demo");
return solrTemplate;
}
}
@NoRepositoryBean
public interface BookRepository extends SolrCrudRepository<Book, String> {
List<Book> findByName(String name);
}
public interface BookService {
Book addBookToIndex(Book book);
}
@Service
public class BookServiceImpl implements BookService {
public BookServiceImpl() {
super();
}
@Autowired
public BookRepository bookRepository;
@Override
public Book addBookToIndex(Book book) {
return bookRepository.save(book);
}
}
尝试启动服务时的异常跟踪:
2016-07-03 15:08:34.596信息35332---
stacktrace包含
没有[com.neighbourspoon.services.search.repositories.bookrepository]类型的合格bean
这是因为BookRepository中的@norepositorybean
注释。你应该移除它。这仅用于自定义中间存储库。在这里,您直接扩展了Spring数据存储库。
错误:-->org.springframework.beans.factory.unsatisfieddependencyexception:创建名为“home controller”的bean时出错:通过字段“user tokenservice”表示的不满足的依赖项;嵌套异常为org.springframework.beans.factory.unsatisfieddependencyexcep
我尝试使用Mybatis XML配置实现一个简单的CRUD应用程序已经是第三天了,我对整个Spring生态系统还是新手。这个问题有点长,但我只分享了要点。 我有一个类: 然后我写了一个映射器 在许多教程和解答之后,我创建了一个,文件也在`Resources文件夹中。 在中,我所做的与在文件中所做的几乎相同 以下是项目结构截图: 嵌套异常是org.springframework.beans.fact
启动应用程序上下文时出错。若要显示条件报告,请在启用“调试”的情况下重新运行应用程序。2020-08-05 09:53:05.348 错误 46991 --- [ 主] o.s.boot.Spring 应用程序: 应用程序运行失败 组织.Spring框架.豆子.工厂.不满意依赖性异常:创建名称为“产品控制器”的Bean时出错:通过字段“产品存储库”表示的不满意的依赖关系;嵌套的异常是组织.spri
我已经完成了我的代码,但它不工作,我不能找到任何解决方案,任何帮助将得到认可 weather.java WeatherController.java 请帮我解决这个错误