Replace J2EE with Java EE
String with version 5 the name of Java Platform, Enterprise Edition changed from J2EE to Java EE. However a lot of the documentation still uses the term J2EE. This commit includes the following changes: * replace J2EE with Java EE where appropriate This is not a blind search and replace. The following occurrences remain unchanged: * references to old J2EE releases, most notably 1.3 and 1.4. * references to "Expert One-On-One J2EE Design and Development" * references to "Core J2EE patterns" * XML namespaces * package names Issue: SPR-14811 See gh-1206
This commit is contained in:
committed by
Stephane Nicoll
parent
8619ad9d9a
commit
ae5b0c6fb5
@@ -53,7 +53,7 @@ public abstract class AbstractRemoteSlsbInvokerInterceptor extends AbstractSlsbI
|
||||
* Set a home interface that this invoker will narrow to before performing
|
||||
* the parameterless SLSB {@code create()} call that returns the actual
|
||||
* SLSB proxy.
|
||||
* <p>Default is none, which will work on all J2EE servers that are not based
|
||||
* <p>Default is none, which will work on all Java EE servers that are not based
|
||||
* on CORBA. A plain {@code javax.ejb.EJBHome} interface is known to be
|
||||
* sufficient to make a WebSphere 5.0 Remote SLSB work. On other servers,
|
||||
* the specific home interface for the target SLSB might be necessary.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Support package for EJB/J2EE-related configuration,
|
||||
* Support package for EJB/Java EE-related configuration,
|
||||
* with XML schema being the primary configuration format.
|
||||
*/
|
||||
package org.springframework.ejb.config;
|
||||
|
||||
@@ -76,7 +76,7 @@ public class JndiLocatorDelegate extends JndiLocatorSupport {
|
||||
}
|
||||
|
||||
/**
|
||||
* Check whether a default JNDI environment, as in a J2EE environment,
|
||||
* Check whether a default JNDI environment, as in a Java EE environment,
|
||||
* is available on this JVM.
|
||||
* @return {@code true} if a default InitialContext can be used,
|
||||
* {@code false} if not
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2010 the original author or authors.
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -26,7 +26,7 @@ import org.springframework.util.Assert;
|
||||
* bean properties.
|
||||
*
|
||||
* <p>JNDI names may or may not include the "java:comp/env/" prefix expected
|
||||
* by J2EE applications when accessing a locally mapped (ENC - Environmental
|
||||
* by Java EE applications when accessing a locally mapped (ENC - Environmental
|
||||
* Naming Context) resource. If it doesn't, the "java:comp/env/" prefix will
|
||||
* be prepended if the "resourceRef" property is true (the default is
|
||||
* <strong>false</strong>) and no other scheme (e.g. "java:") is given.
|
||||
@@ -39,7 +39,7 @@ import org.springframework.util.Assert;
|
||||
*/
|
||||
public abstract class JndiLocatorSupport extends JndiAccessor {
|
||||
|
||||
/** JNDI prefix used in a J2EE container */
|
||||
/** JNDI prefix used in a Java EE container */
|
||||
public static final String CONTAINER_PREFIX = "java:comp/env/";
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ public abstract class JndiLocatorSupport extends JndiAccessor {
|
||||
|
||||
|
||||
/**
|
||||
* Set whether the lookup occurs in a J2EE container, i.e. if the prefix
|
||||
* Set whether the lookup occurs in a Java EE container, i.e. if the prefix
|
||||
* "java:comp/env/" needs to be added if the JNDI name doesn't already
|
||||
* contain it. Default is "false".
|
||||
* <p>Note: Will only get applied if no other scheme (e.g. "java:") is given.
|
||||
@@ -57,7 +57,7 @@ public abstract class JndiLocatorSupport extends JndiAccessor {
|
||||
}
|
||||
|
||||
/**
|
||||
* Return whether the lookup occurs in a J2EE container.
|
||||
* Return whether the lookup occurs in a Java EE container.
|
||||
*/
|
||||
public boolean isResourceRef() {
|
||||
return this.resourceRef;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2012 the original author or authors.
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -26,7 +26,7 @@ import org.springframework.util.StringUtils;
|
||||
* providing configurable lookup of a specific JNDI resource.
|
||||
*
|
||||
* <p>Exposes a {@link #setJndiName "jndiName"} property. This may or may not
|
||||
* include the "java:comp/env/" prefix expected by J2EE applications when
|
||||
* include the "java:comp/env/" prefix expected by Java EE applications when
|
||||
* accessing a locally mapped (Environmental Naming Context) resource. If it
|
||||
* doesn't, the "java:comp/env/" prefix will be prepended if the "resourceRef"
|
||||
* property is true (the default is <strong>false</strong>) and no other scheme
|
||||
|
||||
@@ -40,7 +40,7 @@ import org.springframework.jndi.TypeMismatchNamingException;
|
||||
* the {@link org.springframework.beans.factory.ListableBeanFactory} interface.
|
||||
*
|
||||
* <p>This factory resolves given bean names as JNDI names within the
|
||||
* J2EE application's "java:comp/env/" namespace. It caches the resolved
|
||||
* Java EE application's "java:comp/env/" namespace. It caches the resolved
|
||||
* types for all obtained objects, and optionally also caches shareable
|
||||
* objects (if they are explicitly marked as
|
||||
* {@link #addShareableResource shareable resource}.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2015 the original author or authors.
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -73,7 +73,7 @@ public class DefaultManagedAwareThreadFactory extends CustomizableThreadFactory
|
||||
}
|
||||
|
||||
/**
|
||||
* Set whether the lookup occurs in a J2EE container, i.e. if the prefix
|
||||
* Set whether the lookup occurs in a Java EE container, i.e. if the prefix
|
||||
* "java:comp/env/" needs to be added if the JNDI name doesn't already
|
||||
* contain it. PersistenceAnnotationBeanPostProcessor's default is "true".
|
||||
* @see org.springframework.jndi.JndiLocatorSupport#setResourceRef
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2013 the original author or authors.
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -60,7 +60,7 @@ public class DefaultManagedTaskExecutor extends ConcurrentTaskExecutor implement
|
||||
}
|
||||
|
||||
/**
|
||||
* Set whether the lookup occurs in a J2EE container, i.e. if the prefix
|
||||
* Set whether the lookup occurs in a Java EE container, i.e. if the prefix
|
||||
* "java:comp/env/" needs to be added if the JNDI name doesn't already
|
||||
* contain it. PersistenceAnnotationBeanPostProcessor's default is "true".
|
||||
* @see org.springframework.jndi.JndiLocatorSupport#setResourceRef
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2013 the original author or authors.
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -60,7 +60,7 @@ public class DefaultManagedTaskScheduler extends ConcurrentTaskScheduler impleme
|
||||
}
|
||||
|
||||
/**
|
||||
* Set whether the lookup occurs in a J2EE container, i.e. if the prefix
|
||||
* Set whether the lookup occurs in a Java EE container, i.e. if the prefix
|
||||
* "java:comp/env/" needs to be added if the JNDI name doesn't already
|
||||
* contain it. PersistenceAnnotationBeanPostProcessor's default is "true".
|
||||
* @see org.springframework.jndi.JndiLocatorSupport#setResourceRef
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2011 the original author or authors.
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -27,7 +27,7 @@ import java.lang.annotation.Target;
|
||||
* Domain-Driven Design (Evans, 2003) as "a mechanism for encapsulating storage,
|
||||
* retrieval, and search behavior which emulates a collection of objects".
|
||||
*
|
||||
* <p>Teams implementing traditional J2EE patterns such as "Data Access Object"
|
||||
* <p>Teams implementing traditional Java EE patterns such as "Data Access Object"
|
||||
* may also apply this stereotype to DAO classes, though care should be taken to
|
||||
* understand the distinction between Data Access Object and DDD-style repositories
|
||||
* before doing so. This annotation is a general-purpose stereotype and individual teams
|
||||
|
||||
Reference in New Issue
Block a user