0

I've got webapp project written in java (.ear). It is running under glassfish-3 server. I really have to extend its functonality. but there is no way to change even a line of it. Is it possible to wrap that webapp or anything else (it has no API, only html for user)? I know it's very generic, but i cannot provide a code or other useful things.

A similar situation to mine would be (expect my case needs much SECURITY because of sensitive data)... Let's have a blog application (this would be the java closed webapp), which allows everything You expect from an blog app, BUT one instance handles one user. You would like to allow new user to create blog (new instances of blog app?). The instances should be isolated each other.. but it's simple to achieve. Different instance different db and so on..

I do not expect solution (because of my generic description) but direction where to go. I'm java novice, but i can read and reason so.. :)

4

1 回答 1

0

.ear 只是一个压缩文件,请参阅文档http://en.wikipedia.org/wiki/EAR_(file_format )。您可以随时解压缩并获取所有文件。JSP 和配置文件可以更改,但不能更改 java 类(除非您反编译它们)。

这不是一个完整的解决方案,但希望能在某个方向暗示......

于 2012-08-09T09:10:45.863 回答