English 中文(简体)
Integrating Pentaho/Talend/etc. with an OR Mapper
原标题:

We have an application (Java) with an own OR mapper. Within this system we have what can be compared to Hibernate s interceptors (we call it triggers): Do specific actions just before saving data in the database, after it s deleted and so on. The underlying database is MySQL.

Now we would like to use tools such as Pentaho Data Integration or Talend to convert data to put it into our system. It s no problem to do that directly on the SQL level, but by doing so we loose the built-in power of our triggers.

Is there a way to somehow integrate any of the Data Integration solutions into our existing application? It would be great if there was a way to write into instances of our classes instead of writing into the database directly.

Any hints welcome :-)

最佳回答

2 ways with Pentaho data integration I can think of straight off:

  1. Simply create a plugin which adds/deletes data - you could copy the existing salesforce insert/update plugins, they would be a good start - rip out all the salesforce code and replace with yours.

  2. Perhaps harder; But maybe more satisfying - Write a jdbc driver which uses your code!

问题回答

I d prefer Talend which is a Java code generator tool. (You can se my blog post at http://www.robertomarchetto.com/www/talend_studio_vs_kettle_pentao_pdi_comparison)

You could use a tJavaRow so you can write Java code for each processed row. In tJavaRow you can call Hibernate code, for example using a custom class defined in a new routine.





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签