摘要: 继承WebMvcConfigurerAdapter类,重写类中的方法,可以增加额外的配置 @Configuration public class WebMvcConfig extends WebMvcConfigurerAdapter{ /** * 配置静态访问资源 * @param registry */ @Override public... 阅读全文
posted @ 2018-03-26 14:04 白白胖胖萌 阅读(175) 评论(0) 推荐(0) 编辑
摘要: /** * 对字符串md5加密(小写+数字) * * @param str 传入要加密的字符串 * @return MD5加密后的字符串 */ public static String getMD5(String str) { try { // 生成一个MD5加密计算摘要 ... 阅读全文
posted @ 2018-03-26 09:38 白白胖胖萌 阅读(144) 评论(0) 推荐(0) 编辑