我们使用的是Spring Roo 1.1.5,我们想升级Spring Roo的版本。
我们有一些用RooEntity注释的类。例如,
import org.springframework.roo.addon.entity.RooEntity;
@RooEntity
public class X {
...
}
但是,在spring roo的更高版本中,我找不到任何地方的此类。我对Maven的依赖程度如下:
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.annotations</artifactId>
<version>${roo.version}</version>
<scope>provided</scope>
</dependency>
鉴于我们使用RooEntity批注,如何将spring roo升级到当前版本1.3.1RELEASE。
谢谢!
最佳答案
RooEntity替换为RooJpaActiveRecord。看看http://www.kevinhooke.com/2013/02/06/spring-roo-rooentity-from-1-1-x-replaced-in-1-2-x/