新火炬后端单体项目初始化代码
zhangherong
2025-06-16 18ef7ce6ab00b0824db11fdf23643ca392edcd2f
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
//package org.jeecg.config.sap;
//
//import com.sap.conn.jco.ext.*;
//
//import java.util.Properties;
//
//public class CustomDestinationDataProvider implements DestinationDataProvider {
//
//    private final Properties properties = new Properties();
//
//    public void addDestination(String destinationName, Properties connectProperties) {
//        properties.put(destinationName, connectProperties);
//    }
//
//    @Override
//    public boolean supportsEvents() {
//        return false;
//    }
//
//    @Override
//    public void setDestinationDataEventListener(DestinationDataEventListener destinationDataEventListener) {
//
//    }
//
//    @Override
//    public Properties getDestinationProperties(String destinationName) {
//        return properties.getProperty(destinationName) != null
//                ? (Properties) properties.get(destinationName)
//                : null;
//    }
//}