logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

运行时异常与受检异常有何异同、error和exception有什么区别

1、运行时异常与受检异常有何异同?  异常表示程序运行过程中可能出现的非正常状态,运行时异常表示虚拟机的通常操作中可能遇到的异常,是一种常见运行错误,只要程序设计得没有问题通常就不会发生。受检异常跟程序运行的上下文环境有关,即使程序设计无误,仍然可能因使用的问题而引发。Java编译器要求方法必须声明抛出可能发生的受检异常,但是并不要求必须声明抛出未被捕获的运行时异常。2、erro...

使用RedisDesktopManager工具,解决连接失败问题

今天在虚拟机上搭建好了redis环境,想用RedisDesktopManager工具去连接一下,结果连接不上,显示如下图:我确保了服务器防火墙关闭,又在redis配置文件中设置了requirepass密码,但还是失败。在自己电脑上也能够ping通服务端ip地址。我就看了一下redis.conf文件。开头就有写原因:###################...

运行时异常与一般异常有何异同?

一、异常的概念Java异常类层次结构图:  Throwable: 有两个重要的子类:Exception(异常)和 Error(错误),二者都是 Java 异常处理的重要子类,各自都包含大量子类。Error(错误):  是程序无法处理的错误,表示运行应用程序中较严重问题。大多数错误与代码编写者执行的操作无关,而表示代码运行时 JVM(Java 虚拟机)出现的问题。例如,...

解决:git使用git push 命令跳出remote: Permission to A denied to B的问题

开始git上传项目,不料,在git push这一步骤发生了错误?remote: Permission to qwe2193066947/firstRepository.git denied to murenziwei.fatal: unable to access 'https://github.com/qwe2193066947/firstRepository.git/':...

Docker打包错误:Failed to execute goal com.spotify:docker-maven-plugin:1.2.0:build (default-cli) on proje...

Failed to execute goal com.spotify:docker-maven-plugin:1.2.0:build (default-cli) on project security: Exception caught<build><plugins><plugin><gr...

#docker#java#gradle +1
Docker打包错误:Failed to execute goal com.spotify:docker-maven-plugin:1.2.0:build (default-cli) on proje...

Failed to execute goal com.spotify:docker-maven-plugin:1.2.0:build (default-cli) on project security: Exception caught<build><plugins><plugin><gr...

#docker#java#gradle +1
Spring使用Spel表达式获取参数值

一、依赖1 <dependency>2<groupId>org.springframework.boot</groupId>3<artifactId>spring-boot-starter-web</artifactId>4 </dependency>56 <!-...

#java#spring#python +1
到底了