| | |
| | | @SpringBootApplication |
| | | public class ModelServiceApplication implements CommandLineRunner { |
| | | |
| | | /*static { |
| | | static { |
| | | //加载动态链接库 |
| | | try { |
| | | Properties properties = new Properties(); |
| | |
| | | System.out.println("动态链接库IAILMDK初始化失败"); |
| | | } |
| | | |
| | | try { |
| | | System.out.println("动态加载dll"); |
| | | String dllDir = Objects.requireNonNull(ModelServiceApplication.class.getClassLoader().getResource("dll")).getPath(); |
| | | File dir = new File(dllDir); |
| | | if (dir.exists()) { |
| | | File[] files = dir.listFiles(); |
| | | if (files.length > 0) { |
| | | for (File file : files) { |
| | | System.out.println("加载:" + file.getAbsolutePath()); |
| | | System.load(file.getAbsolutePath()); |
| | | } |
| | | } |
| | | } |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | System.out.println("动态加载dll失败"); |
| | | } |
| | | |
| | | } |
| | | */ |
| | | |
| | | |
| | | public static void main(String[] args) { |
| | | SpringApplication.run(ModelServiceApplication.class, args); |