草庐IT

no-site-package

全部标签

java - Weblogic BEA-000449 : Closing socket as no data read from it during the configured idle timeout of 5 secs

我已经开始在我的weblogic10日志文件中看到这条消息。我正在运行一个大约有40-350个并发用户的应用程序。我的问题是这个错误的真正含义是什么它将如何影响用户(如果有的话)可能是什么原因造成的谢谢 最佳答案 WhatdoesthiserrorreallymeanWeblogic正在关闭用于与其中一个服务器客户端通信的套接字,因为超过五秒没有发送数据,这是您为Weblogic的空闲超时配置的值。Whatcouldbecausingthis客户端程序连接到您的服务器,发送一些数据,然后1)不关闭连接或2)消失。

java - 初学者问题: Looking for a site that has problems a beginning Java programmer can work on

Closed.ThisquestiondoesnotmeetStackOverflowguidelines。它当前不接受答案。想要改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。已关闭6年。Improvethisquestion大家好我对编程的美好世界是陌生的,并且刚在这里来到这个网站。我对整个编程感到非常兴奋,因为我在今年夏天参加的业务遇到了很多其他热心的人。这是一个很棒的社区,我很高兴成为该社区的一部分!我即将进入大学二年级学习计算机科学。上学期,我参加了Java编程的初学者类(class)。我真的很喜欢这种语言,但是我的老师并不能很好地解释这种语言,所以我(和

java - 异常在线程 "main"java.lang.UnsatisfiedLinkError : no jpcap in java. library.path

我正在使用netbeanside并尝试使用jpcap库捕获数据包。我的程序在突然出现这个错误之前可以正常运行Exceptioninthread"main"java.lang.UnsatisfiedLinkError:nojpcapinjava.library.path正在出现。我也在我的另一台电脑上试过ds,但没有成功。我添加了jpcap库,在安装之前我完全清除了旧版本。已尽一切可能。我遇到了严重的麻烦请帮忙! 最佳答案 将此添加到程序的开头:System.out.println(System.getProperty("java.l

java - 启动 Jenkins bash :/usr/bin/java: No such file or directory

我有一个CentOS服务器,我正在尝试将jenkins作为服务运行:servicejenkinsstart我以root用户身份运行,我收到以下响应:StartingJenkinsbash:/usr/bin/java:Nosuchfileordirectory[FAILED]我在命令行中echo了一些东西:[root@xyzopt]#echo$JAVA_HOME/opt/jdk[root@xyzopt]#echo$PATH/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/root/bin:/op

java - Log4j2 的 FailoverAppender 错误 : appender Failover has no parameter that matches element Failovers

当我使用log4j2.1编译我的spring3.2.9web应用程序时,这个错误出现在控制台中:2015-02-0212:08:25,213ERRORappenderFailoverhasnoparameterthatmatcheselementFailovers我的理解是元素“Failover”中不存在元素“Failover”,对吗?为什么会这样?我看不出有什么问题,因为我有sameconfigurationasthelog4j2manual.我的log4j2.xml中有这个配置:[%d{ISO8601}]%c[%C{1}]-%p:%m%n[%d{ISO8601}][%c]-%p:%

java - Jackson 解析异常-(虽然至少有一个 Creator 存在): no String-argument constructor/factory method to deserialize from String value

SpringBoot版本:1.5.10jackson版本:2.9.5Lombok版本:1.18.0我有一个使用kafka发送负载的场景。收到该有效载荷后,我试图断言接收方和发送方端的有效载荷是否相同。首先,我创建了一个将作为有效负载传递的类。该类的结构如下所示。使用的lombok插件版本为1.18.0。@Builder@Getter@Setter@AllArgsConstructor@NoArgsConstructor@JsonIgnoreProperties(ignoreUnknown=true)publicclassMyDummyClassimplementsSerializabl

java - SSL 握手异常 : no cipher suites in common

按照说明进行操作here并重新创建了我之前错误创建的证书。正如我现在看到的,有些东西已经改变了javax.net.ssl.SSLHandshakeException:nociphersuitesincommon在服务器上和javax.net.ssl.SSLHandshakeException:Receivedfatalalert:handshake_failure在客户端上。而不是错误thisquestion服务器是ClassFileServer.java和各自的客户SSLSocketClientWithClientAuth.java关于让两端很好地发挥作用的任何提示,请注意,我使用的

java - 无法解析 1.0 : missing requirement [1. 0] osgi.wiring.package; (&(osgi.wiring.package=

我正在尝试启动我的一个bundle,但一启动它,我就收到以下异常。我不确定是什么问题。org.osgi.framework.BundleException:UnresolvedconstraintinbundleGoldeneyeModellingFramework[1]:Unabletoresolve1.0:missingrequirement[1.0]osgi.wiring.package;(&(osgi.wiring.package=com.host.domain.sharedpersonalize.storageservice)(version>=1.0.0)(!(versio

java - Spring DispatcherServlet : No mapping found for HTTP request

我在使用springmvc3.2.4.RELEASE实现一个非常简单的页面时遇到问题。我的Controller看起来像这样:@Transactional@ControllerpublicclassMembersDetailsController{@AutowiredprivateMemberServicememberService;@RequestMapping(value="/member/{name}",method=RequestMethod.GET)publicStringdisplayMember(@PathVariableStringname){System.out.pri

java - Spring MVC : No handler found for correctly resolved JSP

我编写了一个简单的SpringMVC应用程序,它有一个映射到URL的Controller方法:@RequestMapping(method=RequestMethod.GET,value="/person_list")publicModelAndViewgetPersonList(){//getthelistofallpersonsfromthedatabaseandsetthisastheonlymemberofourmodelmapListpersonList=personDao.list();Mapmodel=newHashMap();model.put("person_list