2017-09-20 9 views
0

エラーは型ミスマッチの例外だと思いますが、なぜ私はそれを取得しているのかわかりません。春のデータ更新クエリのエラー

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'carController' defined in file [C:\Users\aleks\Desktop\Spring Boot With Rest\app\target\classes\carMarket\app\controllers\CarController.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'carServiceImpl' defined in file [C:\Users\aleks\Desktop\Spring Boot With Rest\app\target\classes\carMarket\app\services\implementations\CarServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 1; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'carRepository': Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Validation failed for query for method public abstract carMarket.app.orm.Car carMarket.app.repositories.CarRepository.updateCar(java.lang.String,java.lang.String,java.lang.Long,java.math.BigDecimal)! 

この私が

@Transactional 
@Override 
public boolean editCar(long userId, long carId, CarBindingModel carBindingModel) 
{ 
    Car car = this.carRepository.findById(carId); 
    Car map = this.modelMapper.map(carBindingModel, Car.class); 
    String make = carBindingModel.getMake(); 
    String model = carBindingModel.getModel(); 
    Long milesDriven = carBindingModel.getMilesDriven(); 
    BigDecimal price = carBindingModel.getPrice(); 
    Car car1 = this.carRepository.updateCar(make, model, milesDriven, price); 
    return false; 
} 

でそれを呼び出しています。これは、それは公共のゲッターとセッターや公共空のコンストラクタを持っている。もちろん、ORM

@Entity(name = "cars") 
public class Car 
{ 
    @Id 
    @GeneratedValue(strategy = GenerationType.IDENTITY) 
    private Long id; 
    @NotNull 
    private String make; 
    @NotNull 
    private String model; 
    @NotNull 
    private BigDecimal price; 
    @NotNull 
    private Long milesDriven; 
    @JoinColumn(name = "user_id", referencedColumnName = "id") 
    @OneToOne(fetch = FetchType.EAGER) 
    private User user; 

あるサービス。 このエラーは唯一の更新方法でaccures、私は削除に問題があるかの方法を見つけることができません。..

これは、クエリ、それを自己

@Modifying 
@Query(value = "UPDATE Car as s set s.make= :make, s.model= :model, s.milesDriven= :milesDriven, s.price= :price") 
Car updateCar(@Param(value = "make") String make, @Param(value = "model") String model, @Param(value = "milesDriven") Long milesDriven, @Param(value = "price") BigDecimal price); 

はところで、これは時間のコンパイルエラーです。

+0

add updateCarメソッド –

答えて

0

だから私の問題は、私は私はこの

@Query(value = "UPDATE Car as s set s.make= :make, s.model= :model, s.milesDriven= :milesDriven, s.price= :price") 

だから、それはUPDATE Carが、UPDATE carsされていない必要がありましたレポジトリ方法上記JPQLでこの

@Entity(name = "cars") 
public class Car 

そしてを持っていた休閑 ました