我们正在使用spring roo 1.1.5,我们想升级spring roo的版本。
我们有一些用RooEntity注释的类。例如,
import org.springframework.roo.addon.entity.RooEntity;
@RooEntity
public class X {
...
}
但是,我在春天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.1.RELEASE。
谢谢!
答案 0 :(得分:2)
RooEntity被RooJpaActiveRecord取代。看看http://www.kevinhooke.com/2013/02/06/spring-roo-rooentity-from-1-1-x-replaced-in-1-2-x/