1
@OneToOne関係でマップされた2つのエンティティがあります。 したがって、UserにはTransactionのforeignKeyフィールドがあります。 トランザクションでフィールドを設定する場合、UserRepositoryを使用してフィールドを設定できますか?Springのセッターを使用してデータベースのフィールドを設定する
User user=userRepository.findOne(long id) // find the user with that id
user.getTransactions().setNumber(6); ? //getTransactions is the field that is mapped to Transactions
番号はトランザクション内のフィールドです。 別の方法がありますか?