1
votes

How can I set up an application with Informix database using Spring Boot Web MVC Project. I have studied the docs on the spring.io website but I couldn't find any anything related to Informix.

1

1 Answers

3
votes

Informix has an example github project using Spring boot that hopefully is pretty close to what you would need to know. The important piece is to use maven to get the Informix JDBC driver wired into the Spring application.

https://github.com/informix/informix-db-examples/tree/master/sql/ifx-springboot

Here are the JDBC driver maven coordinates to pull it into your Spring project

<dependency>
    <groupId>com.ibm.informix</groupId>
    <artifactId>jdbc</artifactId>
    <version>4.50.4.1</version>
</dependency>