Hello all,
I have implemented basic proof of concept regarding JTA platform recognition. You can find
the initial suggestion here:
https://github.com/lukasz-antoniak/hibernate-core/commit/3df34efad32ceed9....
Implementation notes:
1) Defining JAR archives in classes extending AbstractJtaPlatform might not be the best
option, but I did not want to double each
platform class by introducing something like:
public interface EnterprisePlatform {
public JtaPlatform getJtaPlatform();
public Collection<Pattern> getCharacteristicJarArchivePatterns();
}
public class WeblogicEnterprisePlatform implements EnterprisePlatform {
// obvious goes here...
}
Any thoughts?
2) Decided to match JAR archive names with regular expressions instead of strict names
because of JAR versioning (case of Bitronix).
As for now, automatic recognition has been tested on WebLogic 12 and it seems to work
fine.
I wanted to know your opinion before testing against other application servers.
Best Regards,
Lukasz