程序中不应对IP地址进行硬编码,可以使用配置文件或数据库存储的方式来存储系统所需的数据;并且录入数据时,还可以做加密处理之后再进行数据的录入,从而防止敏感数据泄露。

    1. public class ConnectionConfig{
    2. String url = EncryptUtil.decrypt(PropertiesUtil.get("connection.url"));
    3. String name = EncryptUtil.decrypt(PropertiesUtil.get("connection.username"));
    4. String password = EncryptUtil.decrypt(PropertiesUtil.get("connection.password"));
    5. ...
    6. }