Can't read property file on Server side with GWT
问题 I want to read property file on Server side. I have DBConfig.java, useDBConfig.java and DBConfig.properties all placed in server package. I can't read the values from property file on Server Side. Your help is highly appreciated. public interface DBConfig extends Constants { @DefaultStringValue("host") String host(String host); @DefaultStringValue("port") String port(String port); @DefaultStringValue("username") String username(String username); @DefaultStringValue("password") String password