Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用struts,现在我有一个问题:BO类的名称是否可能与数据库中的表名不同?当我更改名称时,它会出错
如果您使用注释,请检查与您的对象关联的表名。
@Entity @Table(name = "yourtablename") public class YourClass {...}