1
13693261870
2024-12-08 df6af101972b2ca57351333ad85e3948b82c9448
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();
    }
}