Weblogic下使用jsp查询的Entity Bean

发布于 2022-10-15 09:33:52 字数 3810 浏览 21 评论 0

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <%@ page import="baisha.*"%>
  3. <%@ page import="javax.naming.*"%>
  4. <%!
  5.   private javax.naming.Context getInitialContext() throws Exception {
  6.     String url = "t3://localhost:7001";
  7.     String user = null;
  8.     String password = null;
  9.     Properties properties = null;
  10.     try {
  11.       properties = new Properties();
  12.       properties.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
  13.       properties.put(Context.PROVIDER_URL, url);
  14.       if (user != null) {
  15.         properties.put(Context.SECURITY_PRINCIPAL, user);
  16.         properties.put(Context.SECURITY_CREDENTIALS, password == null ? "" : password);
  17.       }
  18.       return new InitialContext(properties);
  19.     }
  20.     catch(Exception e) {
  21.       System.out.println(e.getMessage());
  22.       return null;
  23.     }
  24.   }
  25. %>
  26. <html>
  27. <head>
  28. <title>
  29. Jsp1
  30. </title>
  31. </head>
  32. <body>
  33. <%
  34. //Properties env =new Properties();
  35. // env.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
  36. // env.put(Context.INITIAL_CONTEXT_FACTORY,"t3://localhost:7001");
  37. //Context ctx = new InitialContext(env);
  38. String str_id=null;
  39. str_id =request.getParameter("id");
  40. javax.naming.Context ctx = new javax.naming.InitialContext();
  41. Object ref = ctx.lookup("Province");
  42. baisha.ProvinceHome provHome =null;
  43. baisha.Province prov = null;
  44. provHome = (baisha.ProvinceHome)javax.rmi.PortableRemoteObject.narrow(ref,ProvinceHome.class);
  45. if (provHome==null) {
  46.    out.println("provHome is null");
  47. }
  48. else
  49.     {
  50.     if (str_id==null){
  51.    
  52.     }
  53.     else{
  54.       try{
  55.         prov = provHome.findByPrimaryKey(new Integer(str_id));
  56.         out.println(prov.getProvinceName());
  57.         }
  58.       catch(Exception e){
  59.        out.println("ID 不存在!");
  60.       }  
  61.     }
  62.     }
  63.   
  64.      
  65. %>
  66. <h1>
  67. JBuilder Generated JSP
  68. </h1>
  69. <form method="post" action="query.jsp">
  70. <br>Enter new value   :  <input name="id"  type="text"><br>
  71. <br><br>
  72. <input type="submit" name="Submit" value="Submit">
  73. <input type="reset" value="Reset">
  74. <br>
  75. </form>
  76. </body>
  77. </html>

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文