Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6621803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:19:04+00:00 2026-05-25T21:19:04+00:00

I use groovy in my Jmeter BSF, and sometimes I have functions that are

  • 0

I use groovy in my Jmeter BSF, and sometimes I have functions that are used frequently enough to be moved to some script which I than can use as a library.
My approach was to create a file, say “library.groovy”, and add there some function

public void function()
{
    println("hello!");
}

and then use the following code in my BSF script

import library.groovy;
function();

Both files lie in the same dir, but script refuses to locate library. I also tried to explicitly wrap this function into class but I took no effect as well.

Can anyone suggest a solution for this?

Update:
I tried almost all possible solutions described in the internet. And everything that works in groovy console or Eclipse does not in Jmeter. Probably that is because of BSF. Anyone knows some workarounds?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T21:19:05+00:00Added an answer on May 25, 2026 at 9:19 pm

    I ended up having 2 files like below:
    “MyHelloClass.groovy”

    public class MyHelloClass   {
        public void hello() {
            println("Hello!");
        }
    }
    

    And “HelloScript.groovy”

    try {
        ClassLoader parent = getClass().getClassLoader();
        GroovyClassLoader loader = new GroovyClassLoader(parent);
        Class groovyClass = loader.parseClass(new File("../GroovyScripts/MyHelloClass.groovy"));
        GroovyObject helloClass = (GroovyObject) groovyClass.newInstance();
        helloClass.hello();
    }
    catch (Throwable e) {
        println(e.toString());
    }
    

    Then I can run “HelloScript.groovy” in BSF from Jmeter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got some soapUI tests, that use groovy scripts to first insert some data
The following that I have to use to run my groovy class file ..\bin\groovy.bat
I wanted to use groovy for a little ftp script and found this post
I’m unable to use Groovy to execute a shell command that has backticks. A
I have a project that uses groovy and java code. The project is deployed
Is it possible to replace any java coding which I use daily with groovy
I use Groovy as dynamic script engine to allow admin users of my web
I want to use a Groovy script to access a webpage. However I'm behind
I'm trying to use javamail in a groovy script to send out an email
I want to use the @Mixin annotation in Groovy which does exactly what I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.