开发者

How can I check a Java library's dependencies against the appengine whitelist?

开发者 https://www.devze.com 2023-02-18 01:31 出处:网络
I want to use the SIFWorks ADK, a java library, with my appengine project.It\'s a complex library with 700 classes.I can get a sample application to run on the appengine development environment.I don\

I want to use the SIFWorks ADK, a java library, with my appengine project. It's a complex library with 700 classes. I can get a sample application to run on the appengine development environment. I don't want a surprise later in development that some class I need to use, but failed to test, has a dependency not on the whitelist.

I used DependencyFinder to generate a list of dependencies, and it produces a huge list of classes, and also things li开发者_StackOverflowke java.util.*, which I can't check against the whitelist directly.

What's the best way to ensure a complex library will be fully compatible with appengine?


Check out this project: http://www.ltech.com/cloud/google-app-engine/java-compatibility-analyzer It will scan your class files and check for dependencies against the whitelist.

0

精彩评论

暂无评论...
验证码 换一张
取 消