JMeter compilation in IntelliJ
Answered
In my JMeter project there is a beanshell code. Today, running test with JMeter GUI, in case of some error in beanshell code, test crushes and it is hard to understand where error is. In order to have an ability to compile the beanshell code, I created in Intellij project based on JMeter source. The project is configured to run with remote debug server. On project running from IntelliJ, it opens JMeter GUI. But I can't find the way, how to see the compilation error in IntelliJ project.
Could you, please, guide me how to do this?
Thank you in advance,
Please sign in to leave a comment.
IntelliJ IDEA can show only errors in the files that it compiles (e.g. Java code of JMeter itself).
Since IntelliJ IDEA doesn't compile beanshell code, it will not show any errors there.
You can try asking at https://stackoverflow.com/ as this problem doesn't look IDE specific.
Thank you for quick response.