JavaWeb答疑
zhengdaqian010
这个作者很懒,什么都没留下…
展开
-
@HystrixCommand 曝红
在pom.xml导入如下依赖即可<dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-javanica</artifactId> <version>RELEASE</version></dependency>如果对你有帮助,请点个赞!!!...原创 2021-12-04 12:23:09 · 480 阅读 · 0 评论 -
Could not autowire. No beans of ‘DiscoveryClient‘ type found.
导错包所致,正确的导包:原创 2021-12-03 16:51:43 · 278 阅读 · 0 评论 -
spring-boot-maven-plugin 曝红的问题
加上版本号,与Springboot的版本号相同即可原创 2021-11-24 20:48:38 · 198 阅读 · 0 评论 -
运行时异常:org.springframework.security.access.AccessDeniedException: Access is denied
在项目中集成spring-security安全框架时,运行时异常:org.springframework.security.access.AccessDeniedException: Access is denied在每个axios请求之前加上这句话后就好了 //允许携带认证cookies,axios.defaults.withCredentials=true;...原创 2021-11-15 18:48:16 · 695 阅读 · 0 评论 -
Could not find result map com.itheima.dao.OrderDao.Map
此处应为resultType原创 2021-11-13 02:28:30 · 337 阅读 · 0 评论 -
login.html?logout isn‘t a valid redirect URL
箭头所指的位置,不要忘了加/原创 2021-11-07 03:09:29 · 228 阅读 · 0 评论 -
nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or n
nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3本来只想要一个结果,结果出现了太多得结果把数据库中重复得数据,删除就好了!...原创 2021-10-22 22:30:55 · 735 阅读 · 0 评论 -
No provider available from registry 127.0.0.1:2181 for service com.itheima.service.
缺少@Service注解原创 2021-10-22 18:32:51 · 975 阅读 · 0 评论 -
NestedServletException: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError:
NestedServletException: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: XXXXXXX嵌套Servlet异常,大部分情况是,依赖嵌套,E依赖D,D依赖C,C依赖B,B依赖A,且A中导入了依赖管理,这样只需在E中导入依赖即可,中间的就不需要再导入依赖,中间的再导入E中已经导入的依赖,这个时候运行程序就会报嵌套异常...原创 2021-10-22 18:28:13 · 5537 阅读 · 0 评论 -
Error creating bean with name ‘jobTrigger‘ defined in class path resource [spring-job.xml]: Invocati
Error creating bean with name 'jobTrigger' defined in class path resource [spring-job.xml]: Invocation of init method failed; nested exception is java.text.ParseException: Unexpected end of expression.设置Quatz定时任务出现的一个小问题小失误酿打错,*和?中间应有空格...原创 2021-10-18 20:35:46 · 265 阅读 · 0 评论 -
Failed to meta-introspect annotation interface org.springframework.web.bind.annotation.RequestBody:
出错原因:注解Refence引用的不对,应该引用dubbo的注解原创 2021-10-16 21:55:31 · 326 阅读 · 0 评论 -
Spring整合SpringMVC时:NoClassDefFoundError: org/springframework/core/log/LogDelegateFactory
控制台报错信息:Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter]: Constructor threw exception; neste原创 2021-09-08 22:10:54 · 395 阅读 · 0 评论 -
Mybatis:Cannot find class: com.mysql.cj.jdbc.Driver
与数据库驱动有关:改成:问题完美解决原创 2021-09-07 18:05:45 · 221 阅读 · 0 评论 -
SpringMVC:No converter found for return value of type: class com.itheima.pojo.User
SpringMVC自动进行JSON数据转换需要的依赖坐标<!--JSON数据转换支持--><dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.9.0</version></dependency><dep...原创 2021-09-02 02:57:30 · 1124 阅读 · 4 评论 -
Tomcat运行时的警告:基于APR的本地库加载失败.错误报告为[no tcnative-1 in java.library.path:
no tcnative-1 in java.library.path根图所示将Tomcat==>bin下的 tcnative-1.dll 应用复制一下,粘贴到JDK==>bin目录下:原创 2021-08-29 10:30:27 · 5270 阅读 · 3 评论 -
在spring容器应用中出现如下报错:通配符的匹配很全面, 但无法找到元素 ‘context:component-scan‘ 的声明。
一看报错提示,就是beans.xml配置文件中有问题,那就到配置文件中找原因。原配置文件:自已一看少了两行代码http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd修改后的配置文件...原创 2021-08-18 20:25:53 · 102 阅读 · 0 评论 -
java: 找不到符号 符号: 类 Account 位置: 程序包 com.itheima.pojo
解决方法:原创 2021-08-12 18:08:44 · 2286 阅读 · 0 评论 -
解决Mybatis中SqlMapConfig.xml配置文件中<configuration>标签报错的问题
解决方案是:在 Mybatis 的配置文件中,各 configuration 的属性必须按照规定的先后顺序进行排序,否则就会出错properties settings typeAliases typeHandlers objectFactory plugins environments databaseProvicer mappers...原创 2021-08-10 17:37:51 · 745 阅读 · 0 评论 -
ResultMapException: Error attempting to get column ‘username‘ from result set. 教大家根据控制台提示,排除异常
今天有伙伴,遇到这样一个提示,来问我怎么排除异常,ResultMapException: Error attempting to get column 'username' from result set. Cause: java.sql.SQLDataException: Cannot convert string '王五' to java.sql.Date value‘异常分析:结果映射异常,从结果集获取列username时错误。java中sql语句中的SQL数据异常:不能将字符串类型.原创 2021-08-09 06:56:54 · 4987 阅读 · 0 评论 -
Mybatis,多环境数据源配置中,出现的Environment.getDataSource()“ because “environment“ is null 问题
Cannot invoke "org.apache.ibatis.mapping.Environment.getDataSource()" because "environment" is null异常提示:环境是空的,那就到多环境配置文件中去看一下从代码中可以清楚得看到,一共配置三种环境,分别是dev,test,pro,但是多环境数据源的配置 <environments>标签中:default属性值写错了,没有先这三种环境中得一种,所以提示"environm...原创 2021-08-03 10:53:22 · 1664 阅读 · 0 评论 -
解决在添加依赖后,pom.xml中代码曝红的问题,即Dependency‘xxx‘not found问题
在我们添加依赖后原创 2021-07-31 03:07:06 · 377 阅读 · 0 评论 -
Exception in thread “main“ java.lang.ClassNotFoundException: com.mysql.jdbc.Driver解决如此报错的问题
1.首先缺少一个jar包,在所在Modulel里面添加一个jar包下载地址:https://dev.mysql.com/downloads/file/?id=477058添加jar包后,又出现这样的错误,1.Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatical...原创 2021-07-30 03:31:54 · 4851 阅读 · 2 评论 -
在自定义Maven依赖的时候,添加json的时候,出现报错,Could not find artifact net.sf.json-lib:json-lib:jar:2.4 in central
Could not find artifact net.sf.json-lib:json-lib:jar:2.4 in central (https://repo.maven.apache.org/maven2)解决方案:在配置json依赖的时候,多写一行代码即完美解决<classifier>jdk15</classifier>添加这一行代码后,在Maven中刷新一下即可。...原创 2021-07-28 02:08:09 · 1812 阅读 · 0 评论 -
java.lang.ClassNotFoundException: org.apache.commons.beanutils.BeanUtils
今天有伙伴求助我这个bug,怎么解决,看提示,很明显,要么就是没有导入jar包,要么就是导入jar包之后,没有添加到库,即Add as library 没有选添加完jar包后,这一步一定不要忘选,原创 2021-07-27 03:51:08 · 493 阅读 · 0 评论 -
解决Maven客户案例中浏览器页面中的乱码问题
jsp源代码<html><body><form action="${pageContext.request.contextPath}/add" method="post"> 客户名称:<input type="text" name="cust_name"/><br/> 客户来源:<input type="text" name="cust_source"/><br> 客户级别:<inpu.原创 2021-07-27 02:37:57 · 344 阅读 · 0 评论 -
Maven项目中添加依赖,出现dependency ‘xxx’ not found问题,即配置文件中出现标红问题。
解决办法:重新刷新一下maven即可原创 2021-07-26 05:40:56 · 530 阅读 · 2 评论