|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.ruoyi.license.domain;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.io.resource.ClassPathResource;
|
|
|
|
|
import de.schlichtherle.license.AbstractKeyStoreParam;
|
|
|
|
|
|
|
|
|
|
import java.io.*;
|
|
|
|
@ -48,9 +49,9 @@ public class CustomKeyStoreParam extends AbstractKeyStoreParam {
|
|
|
|
|
@Override
|
|
|
|
|
public InputStream getStream() throws IOException {
|
|
|
|
|
// 本地开发环境,License生成
|
|
|
|
|
final InputStream in = new FileInputStream(new File(storePath));
|
|
|
|
|
final InputStream in = new FileInputStream(new File(storePath));
|
|
|
|
|
// 线上环境,直接用这个
|
|
|
|
|
// InputStream in = new ClassPathResource(storePath).getStream();
|
|
|
|
|
//InputStream in = new ClassPathResource(storePath).getStream();
|
|
|
|
|
if (null == in){
|
|
|
|
|
throw new FileNotFoundException(storePath);
|
|
|
|
|
}
|
|
|
|
|