为了账号安全,请及时绑定邮箱和手机立即绑定

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
  • 参与学习       151599    人
  • 解答问题       1079    个

Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序

进入课程

findAll()查询不出结果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信