본문 바로가기
Programming/Performance

Performance, JMeter BeanShell Sampler 다른 bsh 파일 import

by ★용호★ 2014. 9. 22.

JMeter에서 한 트랜잭션을 위해 BeanShell 스크립트를 한 곳에만 작성할 수 있기 때문에 다른 파일들에 모듈화를 시키는 방향으로 생각을 하게 되었다.


JMeter에서는 ext 폴더에 jar 파일로 만들어 넣어주면 쉽게 import해서 사용할 수 있고,

beanshell 자체의 문법으로도 import 할 수 있는 방법이 있었다.


 ex) path : /home/pat/mycommands/helloWorld.bsh

addClassPath(“/home/pat");
importCommands("mycommands");



참고 : http://www.beanshell.org/manual/commands.html

댓글