3

我来自 .NET 背景,刚开始使用 Java。我发现 Java SE 没有问题,因为它们紧密遵循相同的概念。但是,在使用 Java EE 时,我发现它比 ASP .NET 稍微复杂一些。

我正在尝试在 Java EE 应用程序中实现 N 层架构。所以我已经编写了我的逻辑和数据层,并在 Java SE 应用程序(这是我的管理后端应用程序)中成功地测试了它们,并且刚刚开始在我的显示层上工作。

问题来了。我正在尝试从 JSP(由按钮事件触发)调用我的业务逻辑层以调用某个方法并将结果输出(例如布尔值)返回给 JSP。

我怎么做?

4

2 回答 2

2

你可以在 jsp 中做所有事情。使用 JAVA MVC 框架

即使没有,您也可以使用Servlet执行简单的反手操作,
或者您可以使用Java Beans,这是 Java bean 的简单业务逻辑实现示例,请参考http://www.tutorialspoint.com/jsp/jsp_java_beans.htm

下面给出了Servlet的示例

索引.jsp

<%@page contentType="text/html" pageEncoding="UTF-8"%>

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <body>
        <form action="add" method="post">
        Value 1:<input type="text" name="val1" id="val1"/><br>
        Value 2:<input type="text" name="val2" id="val2"/><br>
        <input type="submit" value="Submit"/><br>
        </form>
        <%String sum="";
         sum = (String)request.getAttribute("val3"); %>
        <input type="text" value="<%=sum%>" />
    </body>
</html>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <servlet>
        <servlet-name>add</servlet-name>
        <servlet-class>controller.add</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>add</servlet-name>
        <url-pattern>/add</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

添加.java

package controller;

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class add extends HttpServlet {
    String val3;
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setContentType("text/html;charset=UTF-8");
        PrintWriter out = response.getWriter();

        String val1=request.getParameter("val1");
        String val2=request.getParameter("val2");
        if(val1 != null && val2 != null)
        val3=""+(Integer.parseInt(val1)+Integer.parseInt(val2));
        else
        val3="";
        request.setAttribute("val3",val3);
        request.getRequestDispatcher("index.jsp").forward(request, response); 

        try {
        } finally {            
            out.close();
        }
    }


    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        processRequest(request, response);
    }


    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        processRequest(request, response);
    }


    @Override
    public String getServletInfo() {
        return "Short description";
    }// </editor-fold>
}
于 2013-02-11T05:20:38.230 回答
0

在 ASP.NET 中这种由 .Net 处理的东西(javascript 和其他由 .Net 在页面中插入的东西)但在 java 中,您必须自己编写它们。在 .Net 中,您有一些类似的 javascript 方法,do_postback但在 java 中您应该编写 javascripts。请参阅此代码:

脚本:

<script>
function doPostback() {
    // calling some java method using Ajax or Http Post method or redirect to another page
}
</script>

html:

<button type="button" onclick="doPostback()">Go</button>
于 2013-02-11T04:29:58.267 回答