使用hibernate的annotation怎么设置一个实体类的auto-import=false

使用hibernate的annotation如何设置一个实体类的auto-importfalse如题,我使用了jbpm,他自带的有个User.hb

使用hibernate的annotation如何设置一个实体类的auto-import=false
如题,我使用了jbpm,他自带的有个User.hbm.xml,并且auto-import=false
我现在自己也有一个User类,但是使用的是注解方式映射的,没有xml文件,默认是auto-import=true的。
我怎样才能把它设置为false呢?

谢谢各位大侠!

[解决办法]
用这个就可以了:

@Entity(name="xxxx.xxxx.User")
...
public class User {
....
}