Linux服务器上运行找不到jar包中配置文件

文章描述了一个Java应用在本地运行正常,但打包成jar后在生产环境中无法找到jdbc.properties配置文件的问题。开发人员编写了一个读取配置文件的方法,在本地和Linux服务器上工作,但在生产环境中遇到IOException。问题可能在于加载资源的方式。
摘要由CSDN通过智能技术生成

本地测试能跑通,打完jar包后部署到生产环境,报错找不到xxx.xxx配置文件。

例如获取配置文件下JDBC连接参数。写了个方法类。本地和linux服务器环境都能找到配置文件。

public class JdbcConfigReader {
    public static void main(String[] args) {
        Properties props = readConfigFile("jdbc.properties");
        String driver = props.getProperty("jdbc.driver");
        String url = props.getProperty("jdbc.url");
        String username = props.getProperty("jdbc.username");
        String password = props.getProperty("jdbc.password");
        // Do something with the connection info
    }

    public static Properties readConfigFile(String filename) {
		Properties props = new Properties();
		try {
			ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
			URL resource = classLoader.getResource(filename);
			String resourcePath = resource.getPath();
			InputStream inputStream = classLoader.getResourceAsStream(filename);
			if (inputStream == null) {
				inputStream = new FileInputStream(resourcePath);
			}
			props.load(inputStream);
			inputStream.close();
		} catch (IOException e) {
			System.err.println("Failed to read config file " + filename + ": " + e.getMessage());
		}
		return props;
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值