druid数据库密码加密程序编写
Posted LEON.LEE
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了druid数据库密码加密程序编写相关的知识,希望对你有一定的参考价值。
第一步:引入 druid-1.0.1.jar 架包 第二步: 编写程序 package nihao; import com.alibaba.druid.filter.config.ConfigTools; public class er { @SuppressWarnings("static-access") public static void main(String[] args) { try { ConfigTools configTools = new ConfigTools (); //System.out.println(configTools.encrypt("[email protected]")); System.out.println(configTools.encrypt("root")); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
以上是关于druid数据库密码加密程序编写的主要内容,如果未能解决你的问题,请参考以下文章