How can I install the oracle JDBC Driver ?
Oracle jdbc driver is not available on the global public maven repository, you will need to install it manually.
To do so, please follow the following instructions.
Why are some of my tables ignored ?
Tables having no primary key defined are ignored by Springfuse.
Why does the remote generation fail ?
Most likely the remote generation failure is due to a specificity in your database schema that we are not able to handle properly.
Here are few examples that we have encountered:
- A table with no primary key constraint defined
- A column with an esoteric jdbc type such as (NULL, OTHER, etc.)
- A table having a Foreign key constraint to a table that was not reversed
- The maven-celerio-plugin.xml is referencing a table or a column that does not exist
- A stupid bug on our side. For example 3.0.43 may fail if the JDBC type is DOUBLE (was fixed in 3.0.44)
- If you can fix your schema, please do so and try again!
- If you cannot change the schema, we are curious to know more about its specificity and determine how we could handle it, so do not hesitate to contact us to tell us more.
How can I see what is uploaded online ?
We send both generation logs and extracted metadata to the email address provided in springfuse generation form.
How can I tell maven that I use a proxy ?
If you are behind an http proxy, in order to download properly the dependencies, you must configure maven with a settings.xml file (usually ${user.home}/.m2/settings.xml).
Please follow these instructions to create this file.
Note that you also need to provide this information to the springfuse maven plugin.
How can I use previous versions of springfuse ?
You can't, we expose only latest version of SpringFuse.
I am still using jdk 1.5, will it work for me ?
Yes, update the pom.xml accordingly
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.5</target>
</configuration>
My answer is not here...
Just contact us, drop us an email at support@springfuse.com we will be glad to help you.