helloworld.jsp

来自「struts2.0入门」· JSP 代码 · 共 14 行

JSP
14
字号
<%@ page   contentType ="text/html; charset=UTF-8" %>
<%@taglib prefix ="s" uri ="/struts-tags" %>
<html>
<head>
    <title>Hello World </title >
</head>
<body >
    <s:form action ="HelloWorld" theme ="simple" >           
        Locale: <s:textfield name ="loc" /><br>
        <s:submit/>
    </s:form>   
    <h2 ><s:property value ="msg" /></h2>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?