JNDI Service provider for the file system

后端 未结 3 2097

I was looking for the Java Naming and Directory Interface (JNDI) service provider for the file system. As far as I know, Oracle ships bundled with the JDK only service provider

相关标签:
3条回答
  • 2021-02-15 11:05

    You can possibly dowload it from Maven Central

    <dependency>
        <groupId>com.sun.jndi</groupId>
        <artifactId>fscontext</artifactId>
        <version>1.2-beta-3</version>
    </dependency>
    

    Searching for alternative leads to SwiftMQ implementation

    0 讨论(0)
  • 2021-02-15 11:06

    I was able to download this library from oracle's archive downloads. This page contains long list of downloads. Try [Ctrl+F] for "File System Service Provider, 1.2 Beta 3". The jar file is 14 years old :) It was released on Mar 29, 2000.

    0 讨论(0)
  • 2021-02-15 11:14

    Not found in maven central and mvnrepository.com and jfrog. Currently (2015) found at oracle archive to download manually and for maven a similar dependency here is the pom.xml:

    <dependency>
       <groupId>com.sun.messaging.mq</groupId>
       <artifactId>fscontext</artifactId>
       <version>4.6-b01</version>
    </dependency>
    
    0 讨论(0)
提交回复
热议问题