Browse Source

Remove references to codehaus.org

Issue: SPR-13129
pull/812/merge
Stephane Nicoll 11 years ago
parent
commit
95acf8c989
  1. 2
      spring-context/src/main/java/org/springframework/scripting/groovy/package-info.java
  2. 2
      spring-oxm/src/main/java/org/springframework/oxm/castor/package-info.java
  3. 2
      spring-oxm/src/main/java/org/springframework/oxm/xstream/package-info.java
  4. 2
      spring-oxm/src/test/resources/org/springframework/oxm/castor/mapping.xml
  5. 2
      spring-web/src/main/java/org/springframework/http/converter/json/MappingJackson2HttpMessageConverter.java
  6. 2
      spring-webmvc/src/main/java/org/springframework/web/servlet/view/json/MappingJackson2JsonView.java
  7. 2
      spring-webmvc/src/main/java/org/springframework/web/servlet/view/xml/MappingJackson2XmlView.java
  8. 4
      src/asciidoc/core-expressions.adoc
  9. 2
      src/asciidoc/data-access.adoc
  10. 11
      src/asciidoc/integration.adoc

2
spring-context/src/main/java/org/springframework/scripting/groovy/package-info.java

@ -1,6 +1,6 @@
/** /**
* Package providing integration of * Package providing integration of
* <a href="http://groovy.codehaus.org">Groovy</a> * <a href="http://www.groovy-lang.org/">Groovy</a>
* into Spring's scripting infrastructure. * into Spring's scripting infrastructure.
*/ */
package org.springframework.scripting.groovy; package org.springframework.scripting.groovy;

2
spring-oxm/src/main/java/org/springframework/oxm/castor/package-info.java

@ -1,5 +1,5 @@
/** /**
* Package providing integration of <a href="http://castor.codehaus.org/xml-mapping.html">Castor</a> * Package providing integration of <a href="http://castor-data-binding.github.io/castor/reference-guides/1.3.3/html-single/index.html#xml.mapping">Castor</a>
* within Spring's O/X Mapping support. * within Spring's O/X Mapping support.
*/ */
package org.springframework.oxm.castor; package org.springframework.oxm.castor;

2
spring-oxm/src/main/java/org/springframework/oxm/xstream/package-info.java

@ -1,5 +1,5 @@
/** /**
* Package providing integration of <a href="http://xstream.codehaus.org/">XStream</a> * Package providing integration of <a href="http://x-stream.github.io/">XStream</a>
* with Spring's O/X Mapping support. * with Spring's O/X Mapping support.
*/ */
package org.springframework.oxm.xstream; package org.springframework.oxm.xstream;

2
spring-oxm/src/test/resources/org/springframework/oxm/castor/mapping.xml

@ -1,5 +1,5 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE mapping PUBLIC "-//EXOLAB/Castor Mapping DTD Version 1.0//EN" "http://castor.codehaus.org/mapping.dtd"> <!DOCTYPE mapping PUBLIC "-//EXOLAB/Castor Mapping DTD Version 1.0//EN" "http://castor.org/mapping.dtd">
<mapping> <mapping>
<description>Castor generated mapping file</description> <description>Castor generated mapping file</description>
<class name="org.springframework.oxm.castor.Flights"> <class name="org.springframework.oxm.castor.Flights">

2
spring-web/src/main/java/org/springframework/http/converter/json/MappingJackson2HttpMessageConverter.java

@ -25,7 +25,7 @@ import org.springframework.http.MediaType;
/** /**
* Implementation of {@link org.springframework.http.converter.HttpMessageConverter HttpMessageConverter} that * Implementation of {@link org.springframework.http.converter.HttpMessageConverter HttpMessageConverter} that
* can read and write JSON using <a href="http://jackson.codehaus.org/">Jackson 2.x's</a> {@link ObjectMapper}. * can read and write JSON using <a href="http://wiki.fasterxml.com/JacksonHome">Jackson 2.x's</a> {@link ObjectMapper}.
* *
* <p>This converter can be used to bind to typed beans, or untyped {@link java.util.HashMap HashMap} instances. * <p>This converter can be used to bind to typed beans, or untyped {@link java.util.HashMap HashMap} instances.
* *

2
spring-webmvc/src/main/java/org/springframework/web/servlet/view/json/MappingJackson2JsonView.java

@ -40,7 +40,7 @@ import org.springframework.web.servlet.View;
/** /**
* Spring MVC {@link View} that renders JSON content by serializing the model for the current request * Spring MVC {@link View} that renders JSON content by serializing the model for the current request
* using <a href="http://jackson.codehaus.org/">Jackson 2's</a> {@link ObjectMapper}. * using <a href="http://wiki.fasterxml.com/JacksonHome">Jackson 2's</a> {@link ObjectMapper}.
* *
* <p>By default, the entire contents of the model map (with the exception of framework-specific classes) * <p>By default, the entire contents of the model map (with the exception of framework-specific classes)
* will be encoded as JSON. If the model contains only one key, you can have it extracted encoded as JSON * will be encoded as JSON. If the model contains only one key, you can have it extracted encoded as JSON

2
spring-webmvc/src/main/java/org/springframework/web/servlet/view/xml/MappingJackson2XmlView.java

@ -28,7 +28,7 @@ import org.springframework.web.servlet.view.json.AbstractJackson2View;
/** /**
* Spring MVC {@link View} that renders XML content by serializing the model for the current request * Spring MVC {@link View} that renders XML content by serializing the model for the current request
* using <a href="http://jackson.codehaus.org/">Jackson 2's</a> {@link XmlMapper}. * using <a href="http://wiki.fasterxml.com/JacksonHome">Jackson 2's</a> {@link XmlMapper}.
* *
* <p>The Object to be serialized is supplied as a parameter in the model. The first serializable * <p>The Object to be serialized is supplied as a parameter in the model. The first serializable
* entry is used. Users can either specify a specific entry in the model via the * entry is used. Users can either specify a specific entry in the model via the

4
src/asciidoc/core-expressions.adoc

@ -1095,7 +1095,7 @@ ternary operator.
[[expressions-operator-elvis]] [[expressions-operator-elvis]]
=== The Elvis Operator === The Elvis Operator
The Elvis operator is a shortening of the ternary operator syntax and is used in the The Elvis operator is a shortening of the ternary operator syntax and is used in the
http://groovy.codehaus.org/Operators#Operators-ElvisOperator(%3F%3A)[Groovy] language. http://www.groovy-lang.org/operators.html#_elvis_operator[Groovy] language.
With the ternary operator syntax you usually have to repeat a variable twice, for With the ternary operator syntax you usually have to repeat a variable twice, for
example: example:
@ -1144,7 +1144,7 @@ Here is a more complex example.
[[expressions-operator-safe-navigation]] [[expressions-operator-safe-navigation]]
=== Safe Navigation operator === Safe Navigation operator
The Safe Navigation operator is used to avoid a `NullPointerException` and comes from The Safe Navigation operator is used to avoid a `NullPointerException` and comes from
the http://groovy.codehaus.org/Operators#Operators-SafeNavigationOperator(%3F.)[Groovy] the http://www.groovy-lang.org/operators.html#_safe_navigation_operator[Groovy]
language. Typically when you have a reference to an object you might need to verify that language. Typically when you have a reference to an object you might need to verify that
it is not null before accessing methods or properties of the object. To avoid this, the it is not null before accessing methods or properties of the object. To avoid this, the
safe navigation operator will simply return null instead of throwing an exception. safe navigation operator will simply return null instead of throwing an exception.

2
src/asciidoc/data-access.adoc

@ -7046,7 +7046,7 @@ Available attributes are:
XStream is a simple library to serialize objects to XML and back again. It does not XStream is a simple library to serialize objects to XML and back again. It does not
require any mapping, and generates clean XML. require any mapping, and generates clean XML.
For more information on XStream, refer to the http://xstream.codehaus.org/[__XStream For more information on XStream, refer to the http://x-stream.github.io/[__XStream
web site__]. The Spring integration classes reside in the web site__]. The Spring integration classes reside in the
`org.springframework.oxm.xstream` package. `org.springframework.oxm.xstream` package.

11
src/asciidoc/integration.adoc

@ -876,13 +876,6 @@ proxy will take care of forwarding the call to the server-side object via JMS.
} }
---- ----
You may also wish to investigate the support provided by the
http://lingo.codehaus.org/[Lingo] project, which (to quote the homepage blurb) "__... is
a lightweight POJO based remoting and messaging library based on the Spring Framework's
remoting libraries which extends it to support JMS.__"
[[remoting-amqp]] [[remoting-amqp]]
=== AMQP === AMQP
@ -8039,8 +8032,8 @@ in the Spring Framework.
Find below links to further resources about the various dynamic languages described in Find below links to further resources about the various dynamic languages described in
this chapter. this chapter.
* The http://jruby.codehaus.org/[JRuby] homepage * The http://jruby.org/[JRuby] homepage
* The http://groovy.codehaus.org/[Groovy] homepage * The http://www.groovy-lang.org/[Groovy] homepage
* The http://www.beanshell.org/[BeanShell] homepage * The http://www.beanshell.org/[BeanShell] homepage

Loading…
Cancel
Save