Spring JPA を使用しており、外部キー列に値を設定したいと考えています。これが私のエンティティとリポジトリです。
@Entity
public class Device {
@NotEmpty
@Id
private String deviceId;
@ManyToOne
@JoinColumn(name="userId", referencedColumnName="userId", insertable=false, updatable=false)
@NotFound(action=NotFoundAction.IGNORE)
private User user;
//Getters and setters
}
@Entity
public class User(){
@Id
private String userId;
private String userName;
//Getters and setters
}
public interface DeviceRepository extends PagingAndSortingRepository {
}
public class DeviceServiceImpl implements DeviceService {
@Autowired
private DeviceRepository devRepos;
@Autowired
private UserRepository userRepos;
@Override
public void saveDevice(Device device, String userId) {
User user = null;
if (userId!=null) {
user = userRepos.findOne(userid);
device.setUser(user);
}
deviceRepos.save(device);
}
}
ユーザーは Device テーブルに存在しますが、テーブルの userId 列に値が設定されていません。問題を解決するのを手伝ってください。
編集: 注釈から挿入可能および更新可能を削除したところ、機能するようになりました。@JoinColumn(name="userId", referencedColumnName="userId")
次に、これは、デバイスを保存するたびに User テーブルからデバイスのユーザーを取得する必要があることを意味しますか?