Spring CrudRepository方法findAll()返回一个空列表

时间:2019-05-27 21:04:58

标签: java spring spring-repositories

所以,我的问题出在标题上-crudrepository方法findAll()返回一个空列表。我已经覆盖了Crud的方法,因为它返回了一个可迭代的列表,而不是列表。

我尝试使用JpaRepository代替CrudRepository(当时我没有覆盖findAll()方法),但是得到了相同的结果。

我的代码:

Event.java

@Data
@Entity
@NoArgsConstructor
public class Event{

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@Column(nullable=false)
private String name;

@Column(nullable=false)
private LocalDateTime time;

@ManyToOne
@JoinColumn
private City city;

}

City.java

@Data
@Entity
@NoArgsConstructor
public class City {

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@Column(nullable=false)
private Long code;

@Column(nullable=false)
private String name;

    @OneToMany(mappedBy = "city", cascade = CascadeType.ALL)
    private Set<Event> events;
}

CityRepository.java

@Repository
public interface CityRepository extends CrudRepository<City, Long> {

@Override
List<City> findAll();
}

EventsController.java

@Controller
@RequestMapping
public class EventsController {

@Autowired
static CityRepository cityRepository;

public static List<Event> eventList = new ArrayList<>();

@RequestMapping
public String eventEntry(Model model) {

    model.addAttribute("event", new Event());
    model.addAttribute("cities", cityRepository.findAll());

    return "eventEntry";
}
}

eventEntry.html

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Event entry</title>
</head>
<body>

    <h3>New event</h3>

    <form method="POST" th:object="${event}">

        <div class="form-group">
            <label for="city">City: </label>
            <select th:field="*{city}">
                <option value="" >Choose a city</option>
                <option th:each="city : ${cities}" th:value="${city}" th:text="${city}"></option>
            </select>
            <span class="validation-error" th:if="${#fields.hasErrors('city')}" th:errors="*{city}">City Error</span>
        </div>

        <div class="form-group">
            <label for="name">Name: </label>
            <input type="text" th:field="*{name}" />
            <span class="validation-error" th:if="${#fields.hasErrors('name')}" th:errors="*{name}">Name Error</span>
        </div>

        <div class="form-group">
            <label for="time">Time: </label>
            <input type="datetime-local" th:field="*{time}" />
            <span class="validation-error" th:if="${#fields.hasErrors('time')}" th:errors="*{time}">Time Error</span>
        </div>

        <div class="form-group">
            <input type="submit" th:value="Save">
        </div>

    </form>
</body>

我正在使用带有data.sql文件的嵌入式H2数据库,该文件用于将数据填充到数据库中(由于表是使用注释创建的,因此我没有schema.sql文件)。 在查看H2数据库控制台并使用SELECT * FROM CITY时,我会得到城市列表。

我从EventController类的这一行得到NullPointerExceptionmodel.addAttribute("cities", cityRepository.findAll()); 有人可以解释为什么吗?

1 个答案:

答案 0 :(得分:0)

删除了存储库前面的static声明,现在可以正常使用