1 Star 0 Fork 0

pacekiller / 我的收藏

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

图标下载

阿里巴巴矢量图标库iconfont.cn

小程序

https://www.bilibili.com/video/BV1WA411N75W

自学SQL网

http://www.xuesql.cn/

PC及MOBILE组件布局

https://www.imgcook.com/web/gallery

前端代码搜索 openbase 代码实战 腾讯动手实验室 css动画库 animate.net.cn animate.css(用法以官方为准) 国内cdn bootcdn

前端组件库

原生LayUI Vue:ElementUI React:Ant Design 移动端/小程序:VantUI


刷题

https://www.nowcoder.com/exam/company https://chinese.freecodecamp.org/ 算法题 leetcode codetop

代码练习游戏 教程https://www.bilibili.com/video/BV1hA411M7bR https://www.codewars.com/

web编辑器 国外

dooccn.com jsrun.net bejson.com c.runoob.com/compile

**web IDE 国外 **

codesandbox.io codepen.io coder.com github.com/features/codespaces gitpod.io

国内 coding.net 边学边练 sveltejs.cn

个人PC发布网站

安装node-安装server-安装vercel 教程https://www.bilibili.com/video/BV1Vy4y1n7KW


网站收藏

MYSQL API中文文档 https://blog.csdn.net/K346K346/article/details/52106044

JAVA API中文文档

https://javadoc.cloud/


maven vscode配置

https://blog.csdn.net/penguin04/article/details/119032089

  1. 下载 配置环境变量 http://maven.apache.org/
  2. 这里是列表文本修改localRepository\mirrors
<localRepository>D:\Program Files\apache-maven-3.9.0\mvn_resp</localRepository>
<mirror>
    <id>alimaven</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    <mirrorOf>central</mirrorOf>
</mirror>
  1. vscode搜索maven修改settings.jason
//配置文件地址
    "maven.settingsFile": "D:\\Program Files\\apache-maven-3.9.0\\conf\\settings.xml",
    "maven.executable.path": "D:\\Program Files\\apache-maven-3.9.0\\bin\\mvn",
  1. pom.xml增加properties
<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <!-- Following project.-properties are reserved for Maven in will become elements in a future POM definition. -->
    <!-- Don't start your own properties properties with project. -->
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  </properties>

参考教程


TOMCAT c:foreach无效解决办法.jsp文件中加入2句

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

安装mysql 执行启动命令时报错

./bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

解决:报错原因是缺少libaio软件包,安装libaio包

yum install -y libaio

tomcat快速启动

/usr/local/java/jdk1.8.0_381/jre/lib/security/java.security

文件修改参数,关闭延迟随机数

securerandom.source=file:/dev/./urandom

tomcat启动报错

Neither the JAVA_HOME nor the JRE_HOME environment variable is defined At least one of these environ

文件中

/usr/local/tomcat/apache-tomcat-8.5.91/bin/catalina.sh

增加配置

export JAVA_HOME=/usr/local/java/jdk1.8.0_381

springboot后端开放跨域

@Configuration
public class MyWebConfigurer implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowCredentials(true)
                .allowedOrigins("http://localhost:*", "https://*.example.com")
                .allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE")
                .allowedHeaders("*")
                .maxAge(3600);
    }
}

VUE3前端开放跨域 vite.config.js

server: {
    host: '0.0.0.0',
    port:9000,//设置服务启动端口号,是一个可选项,不要设置为本机的端口号,可能会发生冲突
    open:true,//是否自动打开浏览器,可选项
    cors:true,//允许跨域。
    // 设置代理
    proxy: {
      // 将请求代理到另一个服务器
      '/api': {
        target: 'https://www.ceic.ac.cn/ajax/speedsearch',//这是你要跨域请求的地址前缀
        changeOrigin: true,//开启跨域
        rewrite: path => path.replace(/^\/api/, ''),//去除前缀api
      }
    }
  }

Guava 提供了限流工具类 RateLimiter

后端接口限流工具

<!-- aspectj依赖 -->
<dependency>
	<groupId>org.springframework</groupId>
	<artifactId>spring-aspects</artifactId>
	<version>5.2.5.RELEASE</version>
</dependency>

vue3 + vite + pinia 全局变量 pinia持久化存储

vue3 + vite + pinia 全局变量CSDN Vue3中Pinia使用详细介绍、pinia持久化存储(pinia-plugin-persistedstate详细配置)

MACOS M1 MAVEN系统环境配置 MAVEN文件夹一定要放用户文件夹下!!!

vim ~/.bash_profile
export PATH=$PATH:~/apache-maven-3.9.6/bin
source ~/.bash_profile

再添加zsh启动配置

vim ~/.zshrc
source ~/.bash_profile

空文件

简介

个人收藏学习个人收藏学习个人收藏学习 展开 收起
Java
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/behappy520/my.git
git@gitee.com:behappy520/my.git
behappy520
my
我的收藏
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891