异常
我要取一个响亮的昵称
从此以后,要风情万种,吻不同的唇,喜欢不同的人,却不爱任何人。
展开
-
java.lang.IllegalMonitorStateException
异常分析:java.lang.IllegalMonitorStateException是在调用object的wait()、notify()、notifyAll()方法的时候可能会出现的异常。解决方案:在调用上述三个方法的时候,线程必须获得该对象的对象级别锁,换句话说,出现这个异常的原因是,调用wait()、notify()、notifyAll()的对象没有在同步方法(synchronized...原创 2019-12-06 20:10:43 · 558 阅读 · 0 评论 -
The bean 'dataSource',could not be registered.A bean with that name has already been defined
问题:往SpringCloud的注册中心里注册服务时启动SpringBoot项目抛出异常***************************APPLICATION FAILED TO START***************************Description:The bean 'dataSource', defined in BeanDefinition define...原创 2018-12-04 15:20:52 · 22265 阅读 · 6 评论 -
The bean 'counterFactory', could not be registered
问题:在springboot下配置好zuul的依赖后,启动报错:Description:The bean 'counterFactory', defined in class path resource [org/springframework/cloud/netflix/zuul/ZuulServerAutoConfiguration$ZuulCounterFactoryConfigur...原创 2018-12-07 11:58:54 · 2407 阅读 · 1 评论 -
为什么在jsp中 request.getLocalAddr()为0.0.0.0,而不是本地ip地址
原因:这种情况只有在服务器和客户端都在同一台电脑上才会出现,即采用localhost进行页面访问的时出现。具体原因是因为C:\Windows\System32\drivers\etc\hosts这个东西作怪。解决方案:以文本的形式打开,只要注释掉文件中的 # ::1 localhost 这一行即可解决问题。本机访问的时,不要用localhost访问,用127.0.0.1或本机ip代替。...原创 2019-01-21 10:20:02 · 1916 阅读 · 0 评论 -
there's not enought memory to perform the requrested operation.
问题:原因:idea内存溢出解决方案:-Xms512m-Xmx2048m-XX:MaxPermSize=2012m-XX:ReservedCodeCacheSize=2040m-XX:+UseConcMarkSweepGC-XX:SoftRefLRUPolicyMSPerMB=50-da-Djna.nosys=true-Djna.boot.library.path=-D...转载 2019-04-24 19:33:11 · 2169 阅读 · 3 评论 -
java.lang.IllegalStateException: Cannot load driver class: com.mysql.jdbc.Driver
问题:Caused by: java.lang.IllegalStateException: Cannot load driver class: com.mysql.jdbc.Driver at org.springframework.util.Assert.state(Assert.java:94) ~[spring-core-5.1.6.RELEASE.jar:5.1.6.RELEASE]...原创 2019-04-25 11:34:24 · 5082 阅读 · 0 评论 -
[com/ssiwo/mybatis/config/mybatis-config.xml] cannot be opened because it does not exist
问题:Caused by: java.io.FileNotFoundException: class path resource [com/ssiwo/mybatis/config/mybatis-config.xml] cannot be opened because it does not exist at org.springframework.core.io.ClassPathReso...原创 2019-04-25 12:04:19 · 4755 阅读 · 2 评论