簡體   English   中英

java ejb jsp未報告的異常

[英]java ejb jsp unreported exception

嘗試使用jsp與Bean交互時,在運行它時會遇到一些錯誤。

這是我在瀏覽器中看到的錯誤

生成的servlet錯誤:[javac] C:\\ Sun \\ AppServerNew \\ domains \\ domain1 \\ Generated \\ jsp \\ j2ee-apps \\ ConverterApp \\ war-ic_war \\ org \\ apache \\ jsp \\ index_jsp.java:21:未報告的異常javax.naming。 NamingException; 必須被捕獲或聲明為拋出[javac] InitialContext ic = new InitialContext(); ^

生成的servlet錯誤:[javac] C:\\ Sun \\ AppServerNew \\ domains \\ domain1 \\ Generated \\ jsp \\ j2ee-apps \\ ConverterApp \\ war-ic_war \\ org \\ apache \\ jsp \\ index_jsp.java:22:未報告的異常javax.naming。 NamingException; 必須被捕獲或聲明為拋出[javac]對象objRef = ic.lookup(“ java:comp / env / ejb / Converter”); ^

生成的servlet錯誤:[javac] C:\\ Sun \\ AppServerNew \\ domains \\ domain1 \\ Generated \\ jsp \\ j2ee-apps \\ ConverterApp \\ war-ic_war \\ org \\ apache \\ jsp \\ index_jsp.java:24:未報告的異常javax.ejb。 CreateException; 必須被捕獲或聲明為拋出[javac] converter = home.create();

index.jsp

<%@ page import="converter.Converter, converter.ConverterHome, java.math.*, javax.ejb.*, javax.naming.*, 
javax.rmi.PortableRemoteObject, java.rmi.RemoteException" %>
<%!
  private Converter converter = null;
  public void jspInit() {
    try {
      InitialContext ic = new InitialContext();
      Object objRef = ic.lookup("java:comp/env/ejb/Converter");
      ConverterHome home = (ConverterHome)PortableRemoteObject.narrow(objRef, ConverterHome.class);
     converter = home.create();

    } catch (RemoteException ex) {
    } 
  }
%>
<html>
<head>
   <title>Converter</title>
</head>

<body bgcolor="white">
<h1><center>Converter</center></h1>
<hr>
<p>Enter an amount to convert:</p>
<form method="get">
<input type="text" name="amount" size="25">
<br>
<p>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
<%
  String amount = request.getParameter("amount");
  if ( amount != null && amount.length() > 0 ) {
    BigDecimal d = new BigDecimal (amount);
%>
  <p><%= amount %> dollars are  
    <%= converter.dollarToYen(d) %>  Yen.
  <p><%= amount %> Yen are 
    <%= converter.yenToEuro(d) %>  Euro.
<%
   }
%>
</body>
</html> 

ConverterBean

package converter;
import javax.ejb.*;
import java.math.*;
import java.rmi.*;

public class ConverterBean implements SessionBean {

BigDecimal yenRate = new BigDecimal("122.00");

BigDecimal euroRate = new BigDecimal("0.0077");


public BigDecimal dollarToYen(BigDecimal dollars) {
    BigDecimal result = dollars.multiply(yenRate);
    return result.setScale(2, BigDecimal.ROUND_UP);
}

public BigDecimal yenToEuro(BigDecimal yen) {
    BigDecimal result = yen.multiply(euroRate);
    return result.setScale(2, BigDecimal.ROUND_UP);
}

  public void ejbActivate(){}

  public void ejbPassivate(){}

  public void ejbRemove(){}

  public void ejbCreate(){}

  public void setSessionContext(SessionContext ctx){}



}

ConverterHome

package converter;
import java.rmi.RemoteException;
import javax.ejb.*;

public interface ConverterHome extends EJBHome {

Converter create() throws CreateException, RemoteException;



}

變流器

package converter;
import java.rmi.RemoteException;
import javax.ejb.*;
import java.math.*;

public interface Converter extends EJBObject{

public BigDecimal dollarToYen(BigDecimal dollars)
throws RemoteException;

public BigDecimal yenToEuro(BigDecimal dollars)
throws RemoteException;


}

index.jspjspInit()方法更改為:

public void jspInit() {
    try {
        InitialContext ic = new InitialContext();
        Object objRef = ic.lookup("java:comp/env/ejb/Converter");
        ConverterHome home = (ConverterHome) PortableRemoteObject.narrow(objRef, ConverterHome.class);
        converter = home.create();

    }catch(NamingException ne){
    }catch (RemoteException ex) {
    }catch(CreateException ce){
    }
}

RemoteException之后,需要在ur .jsp文件上放置NamingExceptionCreateException

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM