1. Jar 함수는 아래와 같이 작성 하였습니다.
2. nestjs 에서 jar Library의 함수를 호출 한 방법 입니다.
node java npm을 설치 해주었습니다.
$ yarn add java
instance의 함수 호출 시에는 함수명 끝 부분에 Sync를 붙여야 정상적으로 호출 됩니다.
ex) LEAEncryptStr( "" ,"",""); -> LEAEncryptStrSync ( "" ,"","");
encryption.ts 파일 내용 입니다.
export class Encryption {
private java = require("java");
private leaCipher = null;
constructor() {
this.java.classpath.push('./jars/LeaCipher.jar');
this.leaCipher = this.java.import('wrap.WrapLEACipher');
}
async jarTest() {
const instance = new this.leaCipher();
console.log(`instance=${instance}`);
console.log(
await instance.LEAEncryptStrSync("abcdefg2390239023awsfiojsdafjiasfd"
,"2390243skldajflkjsadflkjsaldkfj2"
, "lksadjf329dk@@!!")
);
}
}
encryption.spec.ts 테스트 파일 내용 입니다.
import { Encryption } from './encryption';
describe('Encryption', () => {
it('should be defined', () => {
expect(new Encryption()).toBeDefined();
});
it('jar Test', () => {
const d = new Encryption();
d.jarTest();
});
});
$ npm test encryption.spec.ts
'nest.js' 카테고리의 다른 글
[nestjs] luxon 을 이용하여 심플하게 날짜 및 시간 포멧팅 처리 예제 (0) | 2025.04.04 |
---|---|
[typeorm] createQueryBuilder 를 이용한 MYSQL FULLTEXT SEARCH 검색 테스트 예제 (0) | 2025.04.04 |
[typeorm] countBy 사용시에 동일한 컬럼 두번 정의 불가 (0) | 2025.03.20 |
node net.connect를 이용하여 Blocking TCP Socket Message Send, Receive 테스트 진행 (3) | 2024.10.09 |
SHA256 암호화 알고리즘으로 Text 암호화 예제 (2) | 2024.09.30 |