摘要: maven 之 pom.xml 中配置华为远程仓库 1 <profiles> 2 <profile> 3 <id>kunpeng</id> 4 <!-- 远程仓库列表,将华为鲲鹏 Maven 仓库放在最前面 --> 5 <repositories> 6 <repository> 7 <id>kunp 阅读全文
posted @ 2026-03-17 15:09 hapday 阅读(3) 评论(0) 推荐(0)
摘要: Windows 11 之 MySQL-8.4.8-LTS 版配置文件 my.ini 1 ########## MySQL-8.4.8-LTS 版配置开始 ########## 2 3 # MySQL 客户端配置 4 [client] 5 # 设置客户端的默认字符集为 utf8mb4 6 defaul 阅读全文
posted @ 2026-03-17 14:50 hapday 阅读(8) 评论(0) 推荐(0)
摘要: 微信工具类 WeChatUtil 1 package com.example.util; 2 3 import javax.servlet.http.HttpServletRequest; 4 5 /** 6 * 微信工具类 7 * @date 2025-11-20 8 * @author zjf 阅读全文
posted @ 2025-12-05 18:19 hapday 阅读(8) 评论(0) 推荐(0)
摘要: HTTP 状态 - 来源于 cn.hutool.http package cn.hutool.http; /** * HTTP状态码 * * @author Looly * @author Ningqingsheng * @see java.net.HttpURLConnection * */ pu 阅读全文
posted @ 2025-12-05 14:06 hapday 阅读(24) 评论(0) 推荐(0)
摘要: Http 状态 - 来源于 org.apache.http /* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTI 阅读全文
posted @ 2025-12-05 14:03 hapday 阅读(6) 评论(0) 推荐(0)
摘要: 1、华为云: <mirror> <id>huaweicloud</id> <mirrorOf>central</mirrorOf> <name>华为云公共仓库</name> <url>https://repo.huaweicloud.com/repository/maven</url> <block 阅读全文
posted @ 2025-12-01 15:37 hapday 阅读(92) 评论(0) 推荐(0)
摘要: Spring Web 中获取 HTTP 请求参数的方法 RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes(); ServletRequestAttributes servletRequest 阅读全文
posted @ 2025-11-27 15:46 hapday 阅读(11) 评论(0) 推荐(0)
摘要: HTTP 状态 - 来源于 org.springframework.http /* * Copyright 2002-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (th 阅读全文
posted @ 2025-11-27 15:23 hapday 阅读(18) 评论(0) 推荐(0)
摘要: Spring Boot 项目安全配置,放行指定规则的 HTTP 请求 package com.joyupx.config; import org.springframework.context.annotation.Configuration; import org.springframework. 阅读全文
posted @ 2025-11-13 01:52 hapday 阅读(11) 评论(0) 推荐(0)
摘要: SELECT @@global.time_zone, @@session.time_zone; 阅读全文
posted @ 2025-11-05 14:06 hapday 阅读(14) 评论(0) 推荐(0)