青羊经侦大队-数据平台
wl
2022-08-16 1fb2cfb2bcb152bee03f8a332700241693cfd9b6
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
package com.example.jz;
 
import com.example.jz.auth.DefaultPwdEncoder;
import com.example.jz.config.MinIOConfig;
import com.example.jz.service.MinIOService;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
 
@SpringBootTest
class JzApplicationTests {
    @Autowired
    MinIOService minIOService;
    @Autowired
    DefaultPwdEncoder defaultPwdEncoder;
 
    @Test
    void contextLoads() {
        System.out.println(minIOService.getPreviewFileUrl("2fff006f3082f00e26d496dc0a47c624.png"));
    }
 
 
    @Test
    void test() {
        System.out.println(defaultPwdEncoder.encode("123456"));
    }
 
}