当前位置:首页 > 第17页

Error:java: Compilation failed: internal java compiler error 解决办法

root3年前 (2021-03-26)java1005
Error:java: Compilation failed: internal java compiler error 解决办法
报错信息:项目中Java版本不一致,可以查看项目中的jdk配置1、查看项目的jdk(Ctrl+Alt+shift+S)File ->Project Structure->Project Settings ->Project...

spring程序开发步骤

root3年前 (2021-03-26)java586
1、导入Spring开发的基本包坐标2、编写Dao接口和实现类3、创建Spring核心配置文件4、在Spring配置文件中配置xxDaoImpl5、使用Spring的API获取Bean实例...

zabbix 监控脚本中执行docker命令没有权限

root3年前 (2021-03-18)运维&自动化1606
在zabbix_agnet中执行监本时,提示Got permission denied while trying to connect to the ...

解决zabbix 嵌入到frame时不被允许

root3年前 (2021-03-17)运维&自动化1774
系统嵌入zabbix界面时间遇见不被允许插入frame中因为header头设置了X-Frame-Options 前端界面显示为:Refused to display 'http://192.168.0.174/'...

pom.xml文件的标签含义

root3年前 (2021-03-11)java529
<?xml version="1.0" encoding="UTF-8"?>声明xml的版本<project xmlns="http://maven.apache.org/...

linux 安全策略关闭

root3年前 (2021-02-23)linux602
#防火墙关闭systemctl stop firewalld.service#永久关闭防火墙systemctl disable firewalld.service#临时关闭selinuxsetenforce 0#永久关闭sed -i &qu...

python 的configparser 读取配置文件遇到%特殊符号

root3年前 (2021-02-23)python1135
test.ini 配置文件中有mysql的密码,且密码含有“%”这个特殊符号因为%在py是转义符的含义需要对该字符转义即修改  %  为 %%用%对%进行转义...

linux创建用户和用户组

root3年前 (2021-02-23)linux533
添加用户和组groupadd testuseradd -r -g test test删除用户和组userdel testgroupdel test给文件添加用户组和用户归属chown -R test:test test_file...

shell 替换文件配置

root3年前 (2021-02-23)linux557
sed -i "s/enforcing/disabled/g" /etc/selinux/config...

centos切勿执行yum -y update

root3年前 (2021-02-23)linux539
yum update 跟apt-get update 不一样centos的yum update相当于ubuntu的apt upgrade如果想用ubuntu的apt update,centos是yum makecache因为执行yum -y...