| [ garbages ] in KIDS 글 쓴 이(By): cookie () 날 짜 (Date): 2011년 02월 24일 (목) 오전 10시 59분 21초 제 목(Title): Re: HTML은 좋은 아이디어 였을까? Java Servlet 이라고 하는 Java로 된 CGI 기술같은 것도 있고요. A Servlet is a Java class in Java EE that conforms to the Java Servlet API, a protocol by which a Java class may respond to HTTP requests. .... software developer may use a servlet to add dynamic content to a Web server using the Java platform. The generated content is commonly HTML, but may be other data such as XML. 그리고 JSP(Java Server Page) 라는 기술이 있지요. JavaServer Pages (JSP) is a Java technology that helps software developers serve dynamically generated web pages based on HTML, XML, or other document types. JSP may be viewed as a high-level abstraction of Java servlets. JSP allows Java code and certain pre-defined actions to be interleaved with static web markup content, with the resulting page being compiled and executed on the server to deliver an HTML or XML document. 둘다 최종 결과물은 결국 HTML page이죠. Javascript 는 결과 HTML 페이지에 포함되는 일부요소이고 browser client 에서 실행하는거니 서버와는 상관없고요. 그리고 Java 의 VM 과 byte code 과는 좀 거리가 있지만 multimedia presentation/display에 치중했다는 점에서 Flash 와는 좀 비슷한 점이 있겠네요. 하지만 flash 처럼 복잡하고 유연하고 강력하다면 곤란하고 그보다 간단하고 덜 유연하고 더 low level 인게 효율적이고 바람직 하겠지요. Javascript 와 동등한 기능도 포함해야 할 거니 Javascript VM 기능과 유사한 부분도 포함하야 할거고. |