我正在关注Spring MVC和Angular的教程。我已经在db.properties中为HBM2DDL_Auto创建了一个字段,如下所示:
hibernate.hbm2ddl.auto=update
但是当我尝试在AppConfig.java中进行如下配置时:
props.put(HBM2DDl_AUTO, env.getProperty("hibernate.hbm2ddl.auto"));
我在Eclipse中遇到以下错误:
HBM2DDl_AUTO cannot be resolved to a variable
它没有像教程视频中那样显示。为什么对我这样显示?