IBM MobileFirst - Problems connection database Java Adapter

283 Views Asked by At

Good morning,

I have a Java Adapter and a REST method try to make a SQL query, but I have a right error in this line: Connection con = ds.getConnection ();

The error is as follows:

[6/17/15 10:05:51:577 CEST] 00000076 com.worklight.adapters.rest.JAXRSSandbox E FWLSE03030E: Error during handling Java Adapter request (see logs) [project IBMConfirmingProject] java.lang.NullPointerException at com.confirming.ws.rest.MyAdapterCustomerResource.getTotalFact(MyAdapterCustomerResource.java:89)

In the lib (server) folder, I have the jar: mysql-connector-java-5.1.35-bin.jar And in the file server.xml I have the following configuration:

<library id="MySQLLib">
  <fileset dir="C:\Desarrollo\Java\juno-4.2.2\workspace5\MyProject\server\lib" includes="mysql-connector-java-5.1.35-bin.jar"/>
</library>

<dataSource jndiName="jdbc/mobilefirst_training">
  <jdbcDriver libraryRef="MySQLLib"/>
  <properties databaseName="mobilefirst_training" password="mobilefirst" portNumber="3306" serverName="localhost" user="mobilefirst"/>
</dataSource> 

The log also shows the trace:

[ERROR] FWLSE03030E: Error during handling Java Adapter request (see logs) [project IBMConfirmingProject] java.lang.NullPointerException [INFO ] FFDC1015I: An FFDC Incident has been created: "java.lang.NullPointerException com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters 1105" at ffdc_15.06.17_11.57.08.0.log [ERROR ] SRVE0315E: An exception occurred: com.ibm.ws.webcontainer.webapp.WebAppErrorReport: java.lang.NullPointerException at ibm.confirming.ws.rest.MyAdapterCustomerResource.getTotalFact(MyAdapterCustomerResource.java:89) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

Thanks,

2

There are 2 best solutions below

4
On

I suggest that you will follow the Java SQL adapter instructions as written in the tutorial: https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-7-0/server-side-development/java-adapter/java-sql-adapter/.

Specially, try keeping the reference to the MySQL connector as-is: <fileset dir="${shared.resource.dir}" includes="mysql-*.jar" />

Place the file here:
enter image description here

0
On

I just saw, I lacked MyAdapterCustomerResource.init (); in MyAdapterCustomerApplication, thank you very much