Skip to content

Commit 750fa52

Browse files
committed
fix - remove broken link
1 parent 41aca1f commit 750fa52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2013-09-30-autocomplete-search-box-with-jquery-and-spring-mvc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ public class TagController {
291291

292292
The `@ResponseBody` annotation instructs Spring MVC to serialize the list of Tags to the client and bind it to the web response body. Spring MVC automatically serializes to JSON because the client accepts that content type.
293293

294-
Underneath the covers, Spring MVC delegates to a [`HttpMessageConverter`](http://static.springsource.org/spring/docs/3.0.x/javadoc-api/org/springframework/http/converter/HttpMessageConverter.html) to perform the serialization. In this case, Spring MVC invokes a [`MappingJacksonHttpMessageConverter`](http://static.springsource.org/spring/docs/3.0.x/javadoc-api/org/springframework/http/converter/json/MappingJacksonHttpMessageConverter.html) built on the [Jackson](http://jackson.codehaus.org/) JSON processor. This happens automatically but you need to use the [`mvc:annotation-driven`](https://src.springframework.org/svn/spring-samples/mvc-ajax/trunk/src/main/webapp/WEB-INF/spring/mvc-config.xml) configuration element and have with Jackson present in your classpath. In the project, the Jackson libraries are loaded with maven using the following dependencies in the `pom.xml` file:
294+
Underneath the covers, Spring MVC delegates to a [`HttpMessageConverter`](http://static.springsource.org/spring/docs/3.0.x/javadoc-api/org/springframework/http/converter/HttpMessageConverter.html) to perform the serialization. In this case, Spring MVC invokes a [`MappingJacksonHttpMessageConverter`](http://static.springsource.org/spring/docs/3.0.x/javadoc-api/org/springframework/http/converter/json/MappingJacksonHttpMessageConverter.html) built on the Jackson JSON processor. This happens automatically but you need to use the [`mvc:annotation-driven`](https://src.springframework.org/svn/spring-samples/mvc-ajax/trunk/src/main/webapp/WEB-INF/spring/mvc-config.xml) configuration element and have with Jackson present in your classpath. In the project, the Jackson libraries are loaded with maven using the following dependencies in the `pom.xml` file:
295295

296296
<pre><code class="xml"><!-- Jackson JSON Mapper -->
297297
&lt;dependency&gt;

0 commit comments

Comments
 (0)