我有一个简单的实体。我正在使用 spring-data-jpa 版本 1.2.0.RELEASE 和 eclipselink 2.4.1。
@Entity
@Table(name="platform")
public class Platform {
@Id
@Column(name="id", nullable=false, updatable=false, insertable=true)
private Long id;
// etc.
}
我想保存它。我的存储库看起来像
public interface PlatformRepository extends JpaRepository<Platform, Long> {
Platform findByName( String name );
}
我的控制器使用这种方法非常简单
@RequestMapping(method=RequestMethod.POST, produces="application/json")
public Platform post( Platform platform ) {
Platform result = platformDao.saveAndFlush(platform);
return result;
}
该方法的响应是
{"platform":{"id":null,"name":"Test1"}}
Select * from platform 显示 Test1 的 ID 为 6。该表定义为:
create table platform(
id int not null auto_increment primary key,
name varchar(128) not null);
我希望在保存后设置 ID,但事实并非如此。他们不希望我在写完实体后立即进行查找,对吧?