`
文章列表
升级公司的Devops服务器过程中,遇到了Jenkins从市场安装NodeJS插件失败的问题。   1. 基础信息   Jenkins版本: 2.440   NodeJS插件版本: 1.6.1   2. 操作过程:   (1). Dashboard => 系统管理 => 插件管理 => Avaliable plugins   (2). 搜索框中输入 NodeJS,然后选中复选框,点击右上角的 [安装]。   3. 错误提示:   jenkins  | 2024-01-16 05:31:15.025+0000 [id=67] SEVERE  h.mode ...
VM Ware 16中安装好CentOS7之后,需要将此虚拟机作为服务器使用,所以需要从其他客户端,首先是安装虚拟机的客户端访问CentOS7服务器。   1. VM Ware设置  (1)配置网络连接模式     虚拟机 -> 设置 -> 网络适配器       网络连接选择【桥接模式(B):直接连接物理网络】,如果是WIFI网络(如笔记本无线),需要勾选【复制连接物理网络】,点击【确定】。          (2)虚拟网络编辑器     编辑 -> 虚拟网络编辑器 -> 更改设置            下图中选择【桥接模式(将虚拟机直接连接 ...
Controller类 LoginController.java package org.jinglun.base.controller; import javax.validation.Valid; import org.jinglun.base.dto.LoginDto; import org.jinglun.base.service.LoginService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Con ...
配置类 CDPlayerConfig.java   package soundsystem; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class CDPlayerConfig { @Bean public CompactDisc sgtPeppers() { return new SgtPeppers() ...
Maven配置文件 pom.xml <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelV ...
Maven配置文件 pom.xml <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</model ...
Spring-Service.xml   <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context ...
Option Explicit '-------------------------------------------------------- '[Class name]: clsTxtFile '[Description]: Read Or Write Txt File '-------------------------------------------------------- Private mFileNumber As Integer Private mIsOpen As Boolean Private mEncoding As String ...
import json import os import requests import bs4 from lxml import etree # 模拟真实浏览器标头 header = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 ' '(KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36' } # 获取专辑页数 def get_album(url): r ...
项目背景:Struts2 + Jquery-3.3.1.js 项目需求:页面初始化时,从Struts2的Action端将各个省,市的列表读取到列表(List)变量中,省份一个列表(List),每个市一个列表(List)。在画面(JSP)选择省份的时候,市需要关联变化,即显示为各个省自己的管辖市。 注:项目中没有用到AJAX,JSON,所以谈不上真正的动态。   感想:设计上有些奇怪,用一个列表(List)即可实现。尝试了将列表(List)存储在隐藏域(s:hidden)中,当使用Jquery读取的时候,取出的是对象类名,无法取到对象内容。遂将列表(List)直接存储到隐藏的下拉列表(s ...
applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns ...
命令行->regedit->HKEY_LOCAL_MACHINE->SYSTEM->CurrentControlSet->Services->i8042prt->parameters 修改下面几项: 1,"LayerDriver JPN" KBD106.DLL -> KBD101.DLL 2,"OverrideKeyboardIdentifier" PCAT_106KEY -> PCAT_101KEY 3,"OverrideKeyboardSubtyp ...
@echo off :start set /p first="Input 1 or 2: " if %first% == 1 ( netsh interface ip set address name="ローカル エリア接続" source=static addr=172.16.16.5 mask=255.255.0.0 gateway=172.16.0.1 gwmetric=0 netsh interface ip set dnsservers "ローカル エリア接続" static 172.16.16.5 prim ...
'概要: SHIFT_JIS「全角文字判定(ASCII:0~255の範囲外)」 '引数: strHantei:判定キャラクター '戻り値: True:全角文字, False:全角文字以外 Function isZenkaku(strHantei As String) As Boolean Dim intAscii As Integer intAscii = Asc(strHan ...
Const ForReading = 1, ForWriting = 2, ForAppending = 8 '概要: フォルダー選択ダイアローグを出して、フォルダを選択 '引数: 無し '戻り値: getFilePath 選択されたパス Function getFilePath() As String Dim fd As FileDialog Set fd = ...
Global site tag (gtag.js) - Google Analytics