0%

概述 有的时候,当我们要使用额第三方库停止维护之后,我们想自己修改代码才能达到某个需求。但是 npm 默认是只读的,下次运行依赖管理会覆盖代码。 缘由 要

Git 系列涉及的内容续 Git 对象类型 ​与 索引 详解 Git 分支 如何 创建 、切换 ​与 删除 ​分支 Git 分支在 项目开发 中的作用 Git 分支在 工程化项目 中的最佳实践 分支常见 重要

代码片段 自定义css片段 @import url('/widgets/custom.css') custom.css @import "./webfont.css"; /* html{ filter: grayscale(1); } */ /* 全局样式 */ :root { --b3-font-family: "JetBrains Mono", "LXGW WenKai", "-apple-system", "Wenquanyi Micro Hei", "Wenquanyi Micro Hei Mono", "Microsoft YaHei", "Times New Roman", "方正北魏楷书_GBK" !important;

Java 并发是与硬件息息相关的。Java 线程由操作系统管理,而操作系统又是运行在 CPU 之上的。 并发知识点 Java 并发领域介绍 volatile 关键字的应用场景与原理剖析 synchronized 关

jdk 文档的描述 Thread A thread is a thread of execution in a program. The Java Virtual Machine allows an application to have multiple threads of execution running concurrently. Every thread has a priority. Threads with higher priority are executed in preference to threads with lower priority. Each thread may or may not also be marked as a daemon. When code running in some thread creates a

CXF 的历史 官网: https://cxf.apache.org/ Celtix 和 XFire 合并而来。 稳定版本 3.3.11 https://archive.apache.org/dist/cxf/3.3.11/ 入门项目 新建一个普通 Java 项目即可。 最好使用 Maven 服务端 pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>space.terwer</groupId> <artifactId>cxf-server-demo</artifactId> <version>1.0-SNAPSHOT</version> <packaging>war</packaging> <name>cxf-server-demo</name> <url>https://terwer.space</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <cxf.version>3.3.11</cxf.version> </properties> <dependencies> <!--

Struts2 提供了两种校验方式。 使用编码方式进行校验 新建 register.jsp 页面 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Register</title> </head> <body> <h2 style="color:blue;&#