这个问题在很多地方被问到,但那里提供的解决方案并没有解决我的问题。我使用liquibase作为数据源,javax休息服务和h2数据库。我正在使用这个类而不是web.xml。我在Linux中的tomcat(版本9.0)中添加了web-inf和lib中的h2 jar文件。
@ApplicationPath("/rest")
public class ApiConfig extends Application {
public Map<String, Object> getProperties() {
Map<String, Object> properties = new HashMap<>();
properties.put("jersey.config.server.provider.packages", "com.package");
return properties;
}
}
我该如何解决这个问题?我知道,我错过了一些东西,请帮助我解决这个问题。