240 发简信
IP属地:上海
  • Centos7命令

    1,查看os版本 cat /etc/redhat-release 2, 查看系统字长 getconf LONG_BIT 3,查看版本和字长//在...

  • 多环境配置

    1,增加依赖:spring-boot-configuration-processor 2,@ConfigurationProperties(pr...

  • docker安装配置

    CentOS 7 中 Docker 的安装 Docker 软件包已经包括在默认的 CentOS-Extras 软件源里。因此想要安装 docke...

  • maven

    1,查看默认哪些profile激活了 mvn help:active-profiles 2,查看激活的pom 在特定的profile下 mvn ...

  • centos7安装tomcat

    1,查看tomcat版本 在安装目录下/bin/ 执行./version.sh

  • window下使用redis

    1,redis-server redis.windows.conf 运行 2,使redis成为服务 redis-server --service...

  • HTTP协议状态码

    常用的HTTP状态码有 1,400 请求的参数有错 2 ,401 没有通过认证 3,403 权限不够 4 ,404 路径错误 5,405 不允许...

  • oracle操作临时表空间

    1、查看临时表空间 (dba_temp_files视图)(v_$tempfile视图) selectt ablespace_name,file_...

  • 查看用户拥有的角色及权限

    SELECT DRP.GRANTED_ROLE,RSP.PRIVILEGE FROM DBA_ROLE_PRIVS DRP INNER JOIN...