1
13693261870
2024-12-08 6a588fb6d07ae95ea8d85e28245f7254e9a40fd2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.se.docker.service;
 
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
 
@Service
@SuppressWarnings("ALL")
public class SysDockerService {
    //@Value("${docker.prefix}")
    public String localFilePrefix;
 
    public String test() throws Exception {
        return "docker: " + System.currentTimeMillis();
    }
}