gpt4 book ai didi

java - 惰性初始化 ="true"。它有什么作用?为什么我无法从 Swing 应用程序获取 Spring bean,而无需将lazy-init 设置为 true?

转载 作者:太空宇宙 更新时间:2023-11-04 08:30:08 24 4
gpt4 key购买 nike

我有一个在后端部署轻量级 HTTP 服务器(Jetty)的应用程序。
Servlet 基本上更新 MySQL 数据库。
我已经使用 Spring 连接了所有东西。

到目前为止还好。

我有一个 UI,我想用它来与服务器交互。
如果 UI 在本地运行,我希望它在 JTree 中显示当前登录的用户。

所以我决定启动服务器,即在启动主框架时启动Spring。

最重要的是,为了更新 UI 的 JTree 以显示所有登录用户,我想使用 Observer-Observable 并将接受连接的代码设置为 Observable

ConnectionListener 将收到传入连接的通知,将它们存储在 ArrayBlockingQueue 中,并且 Jtree 的后台线程(具有对 DefaultMutableTreeNode 根的引用)将更新它 - 当然是在 EDT 线程中通过 SwingUtilities 进行更新。

我的问题如下:

如果我这样做:

  public class AdminFrame extends JFrame {
public static ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("myBeans");

public static void main(String[] args){
EventQueue.invokeLater(new Runnable() {
public void run() {
//Show GUI
}
}
}

GUI 没有绘制,但我可以理解,因为一旦 Spring 启动并且服务器启动线程就不会返回。

所以我在后端线程中启动 Spring,如下所示:

public class ServerThread extends Thread {  
@Override
public void run() {
ClassPathXmlApplicationContext ctx = ApplicationCtx.getApplicationCtx();
}
}

public class ApplicationCtx {  

private static ClassPathXmlApplicationContext ctx;
private ApplicationCtx(){}
public static synchronized ClassPathXmlApplicationContext getApplicationCtx(){
if(ctx == null){
ctx = new ClassPathXmlApplicationContext("myBeans.xml");
}
return ctx;
}

}

GUI 现在显示并且看起来没问题,但我错过了通知。

问题:

无法获取新连接的通知:

1)如果我按如下方式注册通知:

public class AdminFrame extends JFrame {  
public static void main(String[] args) {
ServerThread lightweightServer = new ServerThread();
lightweightServer.start();
Thread.sleep(9000);//Temporary solution to make sure the server is started up before GUI
ConnectHandler connectHandler = (ConnectHandler) ApplicationContext.getApplicationCtx().getBean("connectHandler");
connectHandler.addObserver(new ConnectionListener());
EventQueue.invokeLater(new Runnable() {
public void run() {
//SHOW GUI
}
}

GUI 永远不会显示。如果我删除该行:

 ConnectHandler connectHandler = (ConnectHandler) ApplicationContext.getApplicationCtx().getBean("connectHandler");  

GUI 出现。

2) 如果我在 EDT 内注册,即在 AdminFrame 的构造函数内注册,GUI 也不会显示。
IE。

public class AdminFrame extends JFrame {  
public static void main(String[] args) {
ServerThread lightweightServer = new ServerThread();
lightweightServer.start();
Thread.sleep(9000);//Temporary solution to make sure the server is started up before
EventQueue.invokeLater(new Runnable() {
public void run() {

AdminFrame frame = new AdminFrame();
//Other code

}

如果我删除以下行,GUI 就会显示,但这样我就无法注册以获取通知:

 ConnectHandler connectHandler = (ConnectHandler) ApplicationContext.getApplicationCtx().getBean("connectHandler");  

这肯定是线程问题,但我不明白问题是什么。
为什么第二次调用 Spring 应用程序上下文来获取 ConnectHandler 会使线程不返回?
我在这里做错了什么?

<小时/>

更新:

如果我在 Spring 配置文件中向启动 Jetty 服务器的 bean 添加属性 lazy-init="true" ,问题就解决了。
但我不明白为什么它解决了它或者问题是什么。

谢谢

最佳答案

  • SerializedObservate 需要将 GUI 相关代码包装到(大多数情况下)invokeAndWait()

  • 来自 SwingWorker 的输出(因为这是有保证的,但我看到一些情况无法按我的预期工作)或 Runnable#Thread 需要将 GUI 相关代码强行转化为 invokeLater()

  • 您可以在之前准备好 GUI(然后存在 EDT)和可见性

.

JFrame#pack(); 
JFrame#setVisible(true);

.

对于这个Container,您必须在invokeXxx();内部调用,或者最好是从javax.swing.Action()

关于java - 惰性初始化 ="true"。它有什么作用?为什么我无法从 Swing 应用程序获取 Spring bean,而无需将lazy-init 设置为 true?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7705296/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com