私のプロジェクトでチュートリアルと私はspring data
を使っています。data to database
を追加しようとしています。イムは、私が言ってエラーを取得することをやろうとし、次の.
BTを使用してCrudRepository.save(java.lang.Object)を修正するには、springbootにアクセサメソッドがありませんか?
呼び出されたメソッドパブリック抽象java.lang.Objectの org.springframework.data.repository.CrudRepository.save(java.lang.Object上位) にアクセサーメソッドはありません!ここ
誰かが私におよそspringdata
他より知るためのリンクを提供することができれば は感謝し、
//my controller
@RequestMapping("/mode")
public String showProducts(ModeRepository repository){
Mode m = new Mode();
m.setSeats(2);
repository.save(m); //this is where the error getting from
return "product";
}
//implementing crud with mode repository
@Repository
public interface ModeRepository extends CrudRepository<Mode, Long> {
}
//my mode class
@Entity
@Table(name="mode")
public class Mode implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(unique=true, nullable=false)
private int idMode;
@Column(nullable=false)
private int seats;
//assume that there are getters and setters
}
springboot
へイム新しい、誰かが私が間違っているの何Tellmeのことができ、私のコードですspring documentation
どのようにリポジトリをコントローラに挿入しますか? – WeMakeSoftware
'showProducts(ModeRepository repository)' - 私がautowiredと思うメソッドの中の引数として – Priyamal