- 浏览: 10986 次
- 性别:
- 来自: 北京
最新评论
-
xzcgeorge:
Thx.
Spring的RMI连接问题
文章列表
Question
You create a new queue manager in WebSphere MQ 7.1 or 7.5 or later and you try to use a user id that is an MQ Administrator to remotely access the queue manager via a client connection. You get an error with reason code 2035: 2035 MQRC_NOT_AUTHORIZED The MQ Administrator can remotel ...
RMI
问题 1
背景:
用 ./shutdown.sh
关闭 rmi
服务器的 tomcat
,然后 ./startup.sh
启动,客户端连接总是会导致如下错误:
org.springframework.remoting.RemoteLookupFailureException:
Lookup of RMI stub failed; nested exception is
java.rmi.UnmarshalException: error unmarshalling return; nested
ex ...
swing Timer
package timer;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
* swing timer 通过addActionListener()来增加一个任务<br>
* 可以通过设置delay来动态控制执行频率。<br>
* swing timer 强调执行的顺序,按addActionListener()的倒序执行
* @author Administrator
*
*/
public class ...
其实JFreeChart是可以画圆的,XYSeries xyseries = new XYSeries("", false, true)就可以实现了。false表示排序,true表示X轴是否可以对应多个Y值。