About 60 results
Open links in new tab
  1. java现在不用jsp了吗?那不用jsp了是用什么代替jsp的? - 知乎

    其实我在18年的时候已经见过类似的问题了「JSP还应该学习吗」。 我在18年发了几篇JSP的文章,已经有不少的开发者评论『这不是上个世纪的东西了吗』『梦回几年前』『这么老的的东西,怎么还有人 …

  2. 有大佬讲解一下jsp到底是什么吗? - 知乎

    JSP(Java Server Pages)是一种动态网页开发技术,它是在传统的 HTML 网页中嵌入 Java 代码来实现动态内容展示的。通过 JSP 技术,可以在服务器端生成动态的 HTML、XML 或其他格式的页面,实 …

  3. What is the difference between JSF, Servlet and JSP?

    May 25, 2020 · 1290 JSP (JavaServer Pages) JSP is a Java view technology running on the server machine which allows you to write template text in client side languages (like HTML, CSS, …

  4. 什么是JSP技术? - 知乎

    什么是JSP JSP全名为Java Server Pages,java服务器页面。JSP是一种基于文本的程序, 其特点就是HTML和Java代码共同存在! 为什么需要JSP JSP是为了简化Servlet的工作出现的替代品,Servlet …

  5. java - How does jsp work? - Stack Overflow

    Then, this servlet checks if the JSP is already compiled. If the JSP is not compiled yet, the JSP servlet translates the JSP to some Java source code implementing the Servlet interface. Then it compiles …

  6. What does the dollar curly brackets $ {} mean in JSP?

    Dec 24, 2022 · The dollar curly brackets ${} in JSP are used for expression language (EL) to simplify accessing data stored in JavaBeans, maps, or arrays.

  7. How to get parameters from the URL with JSP - Stack Overflow

    The JSP expression language defines a set of implicit objects: pageContext: The context for the JSP page. Provides access to various objects including: servletContext: The context for the JSP page’s …

  8. Include another JSP file - Stack Overflow

    Feb 2, 2012 · the different is include directive includes a file during the translation phase. while JSP Include Action includes a file at the time the page is requested I recommend Spring MVC Framework …

  9. How can I avoid Java code in JSP files, using JSP 2?

    From JSP 1.2 Specification, it is highly recommended that the JSP Standard Tag Library (JSTL) be used in your web application to help reduce the need for JSP scriptlets in your pages. Pages that use …

  10. JSP是什么?有什么特点? - 知乎

    JSP 今日目标: 理解 JSP 及 JSP 原理 能在 JSP中使用 EL表达式 和 JSTL标签 1,JSP 概述 JSP(全称:Java Server Pages):Java 服务端页面。 是一种动态的网页技术,其中既可以定义 HTML、JS …