【发布时间】:2021-12-16 01:45:58
【问题描述】:
大家好,我正在尝试从相关表中保存一些帖子数据。城市和大厅。这是我的城市模型
package com.example.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "cities")
public class Cities {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int id;
@Column(name = "name")
private String name;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
这是我的 Halls 模型:
package com.example.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import java.util.Date;
import org.hibernate.annotations.OnDelete;
import org.hibernate.annotations.OnDeleteAction;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@Entity
@Table(name = "halls")
public class Halls {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int id;
@Column(name = "name")
private String name;
@Column(name = "placeqty")
private int placeqty;
@JsonIgnoreProperties({"hibernateLazyInitializer", "handler","ignoreUnknown = true"})
@ManyToOne(fetch = FetchType.LAZY, optional = false)
@JoinColumn(name = "cityid", nullable = false)
@OnDelete(action = OnDeleteAction.CASCADE)
private Cities cityid;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPlaceqty() {
return placeqty;
}
public void setPlaceqty(int placeqty) {
this.placeqty = placeqty;
}
public Cities getCityid() {
return cityid;
}
public void setCityid(Cities cityid) {
this.cityid = cityid;
}
}
它在cityid 列上与城市模型相关。这是我在 Spring boot 中创建新大厅的控制器方法:
@RequestMapping(value="/add", method=RequestMethod.POST)
public ResponseEntity add(@RequestBody Halls hall)
{
hallsService.addHall(hall);
return new ResponseEntity<>(hall, HttpStatus.CREATED);
}
还有我的 Angular 表单:
<p>Добавить зал</p>
<div>
<div class="submit-form">
<div *ngIf="!submitted">
<div class="form-group">
<label for="title">Название</label>
<input
type="text"
class="form-control"
id="title"
required
[(ngModel)]="hall.name"
name="name"
/>
</div>
<div class="form-group">
<label for="placeqty">кол-во мест</label>
<input
type="text"
class="form-control"
id="placeqty"
required
[(ngModel)]="hall.placeqty"
name="placeqty"
/>
</div>
<select [(ngModel)]="hall.cityid" name="cityid">
<option *ngFor="let c of cities" value="{{c.id}}">{{c.name}}</option>
</select>`
<button (click)="saveHall()" class="btn btn-success">Сохранить</button>
</div>
<div *ngIf="submitted">
<h4>Зал добавлен!</h4>
<button class="btn btn-success" (click)="newHall()">Добавить еще</button>
</div>
</div>
</div>
我的组件看起来像这样:
import { Component, OnInit } from '@angular/core';
import { Hall } from 'src/app/models/hall.model';
import { City } from 'src/app/models/city.model';
import { HallService } from 'src/app/services/hall.service';
import { CityService } from 'src/app/services/city.service';
@Component({
selector: 'app-add-hall',
templateUrl: './add-hall.component.html',
styleUrls: ['./add-hall.component.css']
})
export class AddHallComponent implements OnInit {
cities?: City[];
// @ts-ignore
hall: Hall = {
name: '',
placeqty:'',
cityid:this.retrieveCities(),
};
submitted = false;
constructor(private hallService:HallService,private cityService:CityService) { }
ngOnInit(): void {
}
saveHall(): void {
const data = {
name: this.hall.name,
placeqty: this.hall.placeqty,
cityid: this.hall.cityid
};
console.log(data.cityid);
this.hallService.create(data)
.subscribe(
response => {
console.log("city")
console.log(response);
this.submitted = true;
},
error => {
console.log(error);
});
}
newHall(): void {
this.submitted = false;
this.hall = {
name: '',
placeqty: '',
cityid: this.retrieveCities()
};
}
retrieveCities(): any {
this.cityService.getAll()
.subscribe(
data => {
this.cities = data;
console.log(data);
return data;
},
error => {
console.log(error);
return error;
});
}
}
还有我的 Halls 模型:
import {City} from "./city.model";
export class Hall {
id?:any;
name?:string;
placeqty?:string;
cityid?:City;
}
因此,在发布此表单后,我收到以下错误:
2021-11-01 11:34:10.236 WARN 14120 --- [io-8888-exec-10] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot construct instance of `com.example.model.Cities` (although at least one Creator exists): no String-argument constructor/factory method to deserialize from String value ('2'); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `com.example.model.Cities` (although at least one Creator exists): no String-argument constructor/factory method to deserialize from String value ('2')
at [Source: (PushbackInputStream); line: 1, column: 43] (through reference chain: com.example.model.Halls["cityid"])]
在这种情况下我做错了什么?
将从 Java 和 Angular 添加我的城市模型
Java:
package com.example.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "cities")
public class Cities {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int id;
@Column(name = "name")
private String name;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
还有它的棱角部分:
export class City {
id?:any;
name?:string;
}
我必须在哪里转换它? 这是我的帖子有效负载:
name: "test", placeqty: "100", cityid: "2"}
cityid: "2"
name: "test"
placeqty: "
我还尝试使用 ngvalue 代替值:
<select [(ngModel)]="hall.cityid" name="cityid">
<option *ngFor="let c of cities" [ngValue]='c.id'>{{c.name}}</option>
</select>
没有运气。
【问题讨论】:
-
不是很熟悉这一切,但在你的城市模型中,你的列名是 'id' @Column(name = "id") 但看起来你正在其他领域寻找它作为cityid。我没有看到它在哪里别名。它应该只是'id'吗?在 Halls 下,您有 @JoinColumn(name = "cityid", nullable = false) 应该类似于 @JoinColumn(name = "id", nullable = false)
-
请发布来自浏览器网络选项卡的请求的 JSON 示例。查看 JSON 是否与 City 的模型匹配
-
已发布。请看...
标签: java angular spring-boot angular12