Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须编写一个非常简单的 RESTful Web 服务,它必须将数据库与 jndi 连接起来
名称连接,服务将上传到 websphere 应用服务器。
我不知道如何用 jndi 名称连接数据库,请帮助我。
谢谢..
类似于以下内容:Context ctx = new InitialContext(); DataSource ds = (DataSource)ctx.lookup("<jndi-name>"); Connection conn = ds.getConnection();
Context ctx = new InitialContext(); DataSource ds = (DataSource)ctx.lookup("<jndi-name>"); Connection conn = ds.getConnection();