我需要从我在Tomcat 6上运行的Web应用程序访问FTP服务器。我想使用JNDI来执行此操作。
如何使用JNDI在Tomcat中配置此FTP连接?
我需要写入web.xml
和context.xml
来配置资源?然后,我如何从Java源代码访问此连接?
答案 0 :(得分:4)
从这篇文章:http://codelevain.wordpress.com/2010/12/18/url-as-jndi-resource/
在context.xml中定义您的FTP URL,如下所示:
<Resource name="url/SomeService" auth="Container"
type="java.net.URL"
factory="com.mycompany.common.URLFactory"
url="ftp://ftpserver/folder" />
提供com.mycompany.common.URLFactory实现并确保结果类可供Tomcat使用:
import java.net.URL;
import java.util.Hashtable;
import javax.naming.*;
import javax.naming.spi.ObjectFactory;
public class URLFactory implements ObjectFactory {
public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable environment) throws Exception {
Reference ref = (Reference) obj;
String urlString = (String) ref.get("url").getContent();
return new URL(urlString);
}
}
在web.xml中创建引用
<resource-ref>
<res-ref-name>
url/SomeService
</res-ref-name>
<res-type>
java.net.URL
</res-type>
<res-auth>
Container
</res-auth>
</resource-ref>
然后在您的代码中通过执行JNDI查找来获取FTP URL:
InitialContext context = new InitialContext();
URL url = (URL) context.lookup("java:comp/env/url/SomeService");
答案 1 :(得分:0)
你不需要JNDI。只需使用URLConnection
Java类,其URL以"ftp:"
开头,请参阅e。 G。 URL Connection (FTP) in Java - Simple Question