なぜ私が取得しています春@Autowiredフィールド:Spring @Autowiredフィールドはnullですか?ヌルとして
Exception :
java.lang.NullPointerException
at com.elastic.controller.MainController.getUsers(MainController.java:38)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
MainController.java
package com.elastic.controller;
@Component()
@Path("/user")
public class MainController {
@Autowired
private ElasticSearchRepository elasticSearchRepository;
@GET
@Path("/getAllUsers")
@Produces(MediaType.APPLICATION_JSON)
public Response getUsers() throws Exception{
List<User> userlist =new ArrayList<User>();
Iterator<User> users = elasticSearchRepository.getAllUsers();
while (users.hasNext()) {
userlist.add(users.next());
}
return Response.ok(userlist).build();
}
}
ElasticSearchRepository.java
package com.elastic.repository;
@Configuration
@EnableElasticsearchRepositories(basePackages = "com.elastic.repository")
public class ElasticSearchRepository {
public Iterator<User> getAllUsers() {
Iterator<User> users = userRepository.findAll().iterator();
return users;
}
}
コントローラの
MVC-ディスパッチャ-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch http://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch-1.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
<context:annotation-config />
<mvc:annotation-driven />
<context:component-scan base-package="com.elastic" />
<elasticsearch:repositories base-package="com.elastic.repository" />
<elasticsearch:repositories base-package="com.elastic.entity" />
</beans>
私は@Component注釈を保持しているとリポジトリのために私は@Configurationを保ったが、それでも、この例外を取得しています。 Plsはこれを助ける。
これはSpringコントローラではなく、Jerseyコントローラです。 Spring MVCまたはSpring-Jersey統合を使用します。 – chrylis
どのようにそれを行うには? –
リポジトリは '@ Repository'アノテーションを取得する必要があります – Apostolos