upload
Sun Microsystems Inc.
行业: Computer
Number of terms: 4807
Number of blossaries: 1
Company Profile:
Sun Microsystems is a multinational vendor of computers, computer software and hardware, and information technology services.
Using one computer word to represent a number.
Industry:Computer
A Web container that can run a Web application that is tagged as distributable and that executes across multiple Java virtual machines running on the same host or on different hosts.
Industry:Computer
A virtual field of an entity bean that has container-managed persistence; it is stored in a database.
Industry:Computer
URN
Uniform resource name. A unique identifier that identifies an entity but doesn't tell where it is located. A system can use a URN to look up an entity locally before trying to find it on the Web. It also allows the Web location to change, while still allowing the entity to be found.
Industry:Computer
A virtual field of an entity bean having container-managed persistence; it identifies a related entity bean.
Industry:Computer
A version of RMI implemented to use the CORBA IIOP protocol. RMI over IIOP provides interoperability with CORBA objects implemented in any language if all the remote interfaces are originally defined as RMI interfaces.
Industry:Computer
URI
Uniform resource identifier. A globally unique identifier for an abstract or physical resource. A URL is a kind of URI that specifies the retrieval protocol (http or https for Web applications) and physical location of a resource (host name and host-relative path). A URN is another type of URI.
Industry:Computer
A vendor that supplies an EJB server.
Industry:Computer
To verify the identity of a user, device, or other entity in a computer system, often a prerequisite to allowing access to resources in a system. Based on definition found at search Database.com see http://searchdatabase.techtarget.com
Industry:Computer
Threads use a spin lock to test a lock variable over and over until some other task releases the lock. That is, the waiting thread spins on the lock until the lock is cleared. Then, the waiting thread sets the lock while inside the critical region. After work in the critical region is complete, the thread clears the spin lock so another thread can enter the critical region. The difference between a spin lock and a mutex is that an attempt to get a mutex held by someone else will block and release the LWP; a spin lock does not release the LWP. See also mutex lock.
Industry:Computer