引用 websphere datasource
<resource-ref>
<description>Datasource</description>
<res-ref-name>jdbc/oracle</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
Properties properties = new Properties();
properties.put(Context.INITIAL_CONTEXT_FACTORY, "com.ibm.websphere.naming.WsnInitialContextFactory");
properties.put(Context.PROVIDER_URL, "iiop://localhost:2809");
Context ctx = new InitialContext(properties);
DataSource ds = (DataSource) ctx.lookup("jdbc/Oracle");
Connection conn = ds.getConnection();
out.println(conn + "<br>");
conn.setAutoCommit(false);
String query = "select sysdate from dual";
ResultSet rs = null;
PreparedStatement ps = conn.prepareStatement(query);
rs = ps.executeQuery();
while(rs.next()){
out.println((java.util.Date)rs.getDate(1) + "<br>" );
}
conn.commit();
rs.close();
ps.close();
conn.close();
JVM :应用服务器 -->server-->服务基础架构-->进程定义-->JVM 256 512
分享到:
相关推荐
WebSphere MQ配置.rar WebSphere MQ配置.rar WebSphere MQ配置.rar
Prentice.Hall.PTR.IBM.WebSphere.Deployment.and.Advanced.Configuration.Aug.2004.eBook-DDU.chm
IBM websphereMQ 8.0.0.5 lib包; IBM\WebSphere MQ\java\lib下的文件 文件列表: com.ibm.mq.jms.Nojndi.jar com.ibm.mq.pcf.jar com.ibm.mq.allclient.jar com.ibm.mq.postcard.jar com.ibm.mq.axis2.jar ...
在WebSphere Application Server(WAS)6.1版本中,GC活动会记录在特定的日志文件中,如`native_stderr.log`。这个日志文件提供了关于内存分配、垃圾收集过程以及可能的性能问题的关键信息。 **GC日志分析的重要性...
在本文中,我们将探讨如何在不同的服务器环境中配置Data Source,包括IBM Websphere 6.1与MySQL以及DB2数据库的集成。Data Source是J2EE应用服务器中用于管理数据库连接的重要组件,它允许应用程序通过JDBC(Java ...
WebSphere是IBM开发的一款企业级应用服务器,是Java EE(现在称为Jakarta EE)平台的实现,用于构建、部署和管理分布式应用程序。本教程将详细阐述WebSphere Application Server v6.1.0.0在Windows操作系统上的安装...
美河提供.IBM.WebSphere.Studio.J2EE应用开发.
WebSphere快速入门.pdf
Websphere应用服务器中的内存管理主要依赖于JVM。 #### 三、Websphere内存溢出的常见原因 1. **对象未释放:** - 在Websphere中,如果某些对象不再使用但仍然被引用,这些对象就不会被垃圾回收器(GC)回收,从而...
Prentice.Hall.PTR.IBM.WebSphere.Deployment.and.Advanced.Configuration.Aug.2004.eBook-DDU.chm
在IT行业中,WebSphere是一款由IBM开发的企业级应用服务器,广泛用于部署和管理Java应用程序,尤其是...同时,`websphere.doc`这个文档可能是关于WebSphere配置和管理的详细指南,建议仔细阅读以获取更具体的操作指导。
WebSphere内部培训.pptx
WebSphere快速入门.doc
在实际开发中,我们还需要了解如何配置WebSphere JMS,包括设置JMS提供者、创建JMS资源(如队列和主题)、配置JNDI命名上下文,以及在应用程序中使用这些资源。此外,对于高可用性和故障转移,还需要理解WebSphere...
学生将学习如何在WebSphere中配置Java Naming and Directory Interface (JNDI)以查找和绑定资源,同时还会涉及到数据源的创建和配置,这对于数据库连接的管理至关重要。 4. 实验四:安全管理与认证 这次实验重点...
5. **性能调优**:WebSphere有许多可调整的参数,用于优化服务器性能,如JVM内存设置、线程池大小、缓存策略等。掌握性能调优技巧可以帮助提升应用的响应速度和稳定性。 6. **集群与高可用性**:对于大型企业应用,...
消息中间件及WebSphere MQ入门.doc
系统安全配置技术规范Websphere优质资料.doc