亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

findAll()查詢不出結果

package com.example.demo;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;


@Entity
public class Girl {
? ?@Id
? ?@GeneratedValue(strategy = GenerationType.IDENTITY)
? ?private Integer id;

? ?private String cupSize;

? ?private Integer age;

? ?public Girl() {
? ?}

? ?public Integer getId() {
? ? ? ?return id;
? ?}

? ?public void setId(Integer id) {
? ? ? ?this.id = id;
? ?}

? ?public String getCupSize() {
? ? ? ?return cupSize;
? ?}

? ?public void setCupSize(String cupSize) {
? ? ? ?this.cupSize = cupSize;
? ?}

? ?public Integer getAge() {
? ? ? ?return age;
? ?}

? ?public void setAge(Integer age) {
? ? ? ?this.age = age;
? ?}
}


package com.example.demo;


import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@RestController
public class GirlController {

? ?@Autowired
? ?private GirlRepository girlRepository;

? ?@GetMapping(value = "/girls")
? ?public List<Girl> girlList(){
? ? ? ?return girlRepository.findAll();
? ?}
}


package com.example.demo;


import org.springframework.data.jpa.repository.JpaRepository;

public interface GirlRepository extends JpaRepository<Girl,Integer> {
}



正在回答

1 回答

MySQL 是否啟動正常??

錯誤提示是什么?

application.yml 或者 .propertity? 提供一下

0 回復 有任何疑惑可以回復我~
#1

慕粉4289691 提問者

是我update改成create了....尷尬 不過還是謝謝你
2018-03-07 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消
2小時學會Spring Boot
  • 參與學習       151526    人
  • 解答問題       1132    個

Spring Boot入門視頻教程,你將學會使用Spring Boot快速構建應用程序

進入課程

findAll()查詢不出結果

我要回答 關注問題
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號