본문 바로가기
nest.js

[nestjs] java jar library 함수 호출 예제

by Hwoarang757 2025. 2. 26.

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