protected String getProperty(String name) {
        String file = "/META-INF/jndi.properties";
        URL fileURL = this.getClass().getResource(file);
        if (fileURL != null) {
            try {
                props.load(this.getClass().getResourceAsStream(file));
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return props.getProperty(name);
    }

相关文章:

  • 2021-12-28
  • 2021-07-12
  • 2022-12-23
  • 2021-06-08
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-08
  • 2021-08-07
  • 2021-10-21
相关资源
相似解决方案