jboss裡能配置資料原,在外部用嗎?我這個問題如何解決,近來看看

chendd2003發表於2004-09-09
Properties props =new Properties();

props.put(Context.INITIAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");

props.put(Context.PROVIDER_URL,"localhost:1099");


InitialContext ctx = new InitialContext(props);

System.out.println("hello");
DataSource ds = (DataSource) ctx.lookup("MySqlDS");
///結果說找不到MySqlDs,我的著段程式碼不是跑在jboss裡,而是跑在別的地方

相關文章