nullable,

This commit is contained in:
jackdaw 2016-11-18 11:29:10 +09:00
parent 14cdf606cd
commit 330ace9e7e
2 changed files with 3 additions and 5 deletions

View File

@ -17,7 +17,7 @@ public class DiscoveryPort {
private long id;
@ManyToOne
@JoinColumn
@JoinColumn(nullable = false)
@JsonIgnore
private DiscoveryHost host;
public DiscoveryHost getHost() {

View File

@ -21,8 +21,8 @@ public class ServiceScanHistory {
@Temporal(TemporalType.TIMESTAMP)
private Date createDate;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn
@ManyToOne
@JoinColumn(nullable = false)
@JsonIgnore
private DiscoveryPort port;
@ -34,8 +34,6 @@ public class ServiceScanHistory {
@Enumerated(EnumType.STRING)
private DirectionType direction;
@Lob
@Column(nullable = false)
private byte[] packet;