質問

Jsp pages are first converted to *.java files and then this source file is compiled and executed by the container. why can't we use some byte code engineering libraries to make the class files directly?

役に立ちましたか?

解決

I think that Sun engineers chose this approach because of its simplicity. It is trivial to generate servlet java source file from jsp. And then they just use standard compiler. They do not care about low level compiler stuff, they just reuse existing components. Classical KISS - keep it simple, stupid.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top