I am using Spring JPA
@Column(name = "rec_cren_tm", insertable = false, updatable = false)
private Timestamp recCrenTm; 
which is using database timestamp and inserting properly.
But while fetching I am getting this is property as null. Below is what I am using on the method
@Transactional
public interface IClaimRepository extends JpaRepository<Claim, Long> {
    @Transactional(readOnly = false, propagation = Propagation.REQUIRES_NEW)
    List<Claim> findByLnId(String LnId);
How do I get this?
 
    