Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

java.lang.NullPointerException: Cannot invoke method addURL() on null object

Pria
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 7, 2017

Below are the first few lines of my groovy file. When i try to run it from the server, i get the error java.lang.NullPointerException: Cannot invoke method addURL() on null object
        at org.codehaus.groovy.runtime.NullObject.invokeMethod(NullObject.java:77)

I am not sure how the code needs to be changed here to fix the above error:

package groovy;

def localFile = new File("/tmp/sqljdbc4.jar");
this.class.classLoader.rootLoader.addURL(localFile.toURI().toURL());

import java.sql.Connection;
import java.sql.DriverManager;
import com.microsoft.sqlserver.jdbc.*;
import groovy.sql.Sql;

Connection ret = null;

try {
SQLServerDataSource ds = new SQLServerDataSource()
......

 

Thanks

Pria

1 answer

0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 7, 2017

What is on line 77 where the error happens?  There's an "addUrl" call on line 3, but we have no way of knowing that this is where the error really happens.

Please, give us the whole thing, NOT as a screenshot image, as those are useless for code, but the whole script (redact data if you need to, it's the structure and code we need)

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events