Domanda

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?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top