首页>代码>docker+spring boot+mybatis+druid+Thymeleaf+mysql整合开发个人博客系统,包括后台管理系统>/My-Blog-master/src/main/java/com/my/blog/website/constant/WebConst.java
package com.my.blog.website.constant; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; /** * Created by BlueT on 2017/3/3. */ @Component public class WebConst { public static Map<String, String> initConfig = new HashMap<>(); public static String LOGIN_SESSION_KEY = "login_user"; public static final String USER_IN_COOKIE = "S_L_ID"; /** * aes加密加盐 */ public static String AES_SALT = "0123456789abcdef"; /** * 最大获取文章条数 */ public static final int MAX_POSTS = 9999; /** * 最大页码 */ public static final int MAX_PAGE = 100; /** * 文章最多可以输入的文字数 */ public static final int MAX_TEXT_COUNT = 200000; /** * 文章标题最多可以输入的文字个数 */ public static final int MAX_TITLE_COUNT = 200; /** * 点击次数超过多少更新到数据库 */ public static final int HIT_EXCEED = 10; /** * 上传文件最大1M */ public static Integer MAX_FILE_SIZE = 1048576; }

心中无码 LV5
2024年12月9日
3305787467 LV12
2023年6月3日
hdell65 LV6
2022年10月5日
MangoCooper LV1
2022年7月8日
ZER0ZER0 LV3
2022年5月30日
wanglinddad LV55
2022年4月12日
y1214435276 LV9
2022年4月11日
xiex909 LV27
2022年3月17日
爱写代码 LV12
2021年12月20日
Mayoubin2001 LV21
2021年12月19日