严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.northglass.applicationListener;
 
import java.sql.SQLException;
 
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Service;
 
import com.northglass.log.GLoggerFactory;
import com.northglass.service.device.DeviceService;
import com.northglass.util.SetupUtil;
 
@Service
public class InitializeSystemApplicationListener implements ApplicationListener<ContextRefreshedEvent> {
 
    private static final Logger LOGGER = GLoggerFactory.getLogger(InitializeSystemApplicationListener.class);
    @Autowired
    private DeviceService deviceService;
    
    @Override
    public void onApplicationEvent(ContextRefreshedEvent event) {
        LOGGER.debug("> Start onApplicationEvent");
        
        try {
            if (SetupUtil.databaseExists()) {
                LOGGER.trace("event.getApplicationContext().getParent()"+event.getApplicationContext().getParent());
                if (event.getApplicationContext().getParent() == null) {
//                    systemService.resetState();
                    deviceService.resetState();
                }
                else {
//                    systemService.connect();
                    deviceService.connect();
                }
            }
        }
        catch (ClassNotFoundException e) {
            e.printStackTrace();
        } 
        catch (SQLException e) {
            e.printStackTrace();
        }
        
        LOGGER.debug("> End onApplicationEvent");
    }
}