changed J2EE to Java EE

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1663 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Thomas Risberg
2009-07-30 18:32:05 +00:00
parent eb1937341d
commit e96cef688a
9 changed files with 37 additions and 37 deletions
+2 -2
View File
@@ -20,7 +20,7 @@
<title>Unit testing</title>
<para>One of the main benefits of Dependency Injection is that your code
should really depend far less on the container than in traditional J2EE
should really depend far less on the container than in traditional Java EE
development. The POJOs that make up your application should be testable in
JUnit or TestNG tests, with objects simply instantiated using the
<literal>new</literal> operator, <emphasis>without Spring or any other
@@ -54,7 +54,7 @@
contains an implementation of the JNDI SPI, which is useful for
setting up a simple JNDI environment for test suites or stand-alone
applications. If, for example, JDBC <classname>DataSource</classname>s
get bound to the same JNDI names in test code as within a J2EE
get bound to the same JNDI names in test code as within a Java EE
container, both application code and configuration can be reused in
testing scenarios without modification.</para>
</section>