This project is an extension of the Spring Data MongoDB project to ease its use with jQuery plugin DataTables with server-side processing enabled.
This will allow you to handle the Ajax requests sent by DataTables for each draw of the information on the page (i.e. when paging, ordering, searching, etc.) from Spring @RestController.
Example:
@RestController
public class UserRestController {
@Autowired
private UserRepository userRepository;
@JsonView(DataTablesOutput.View.class)
@RequestMapping(value = "/data/users", method = RequestMethod.GET)
public DataTablesOutput<User> getUsers(@Valid DataTablesInput input) {
return userRepository.findAll(input);
}
}
<dependency>
<groupId>com.github.darrachequesne</groupId>
<artifactId>spring-data-mongodb-datatables</artifactId>
<version>1.0.0</version>
</dependency>
Please see the sample project for a complete example.
With either
@EnableMongoRepositories(repositoryFactoryBeanClass = DataTablesRepositoryFactoryBean.class)
or its XML counterpart
<mongo:repositories factory-class="org.springframework.data.mongodb.datatables.DataTablesRepositoryFactoryBean" />
You can restrict the scope of the factory with @EnableMongoRepositories(repositoryFactoryBeanClass = DataTablesRepositoryFactoryBean.class, basePackages = "my.package.for.datatables.repositories")
. In that case, only the repositories in the given package will be instantiated as DataTablesRepositoryImpl
on run.
public interface UserRepository extends DataTablesRepository<User, Integer> {
...
}
The DataTablesRepository
interface extends the MongoRepository
.
public class User {
@JsonView(DataTablesOutput.View.class)
private Integer id;
@JsonView(DataTablesOutput.View.class)
private String mail;
// not exposed
private String hiddenField;
@ManyToOne
@JoinColumn(name = "id_address")
@JsonView(DataTablesOutput.View.class)
private Address address;
}
It overrides jQuery data serialization to allow Spring MVC to correctly map input parameters (by changing column[0][data]
to column[0].data
in request payload)
The repositories now expose the following methods:
DataTablesOutput<T> findAll(DataTablesInput input);
DataTablesOutput<R> findAll(DataTablesInput input, Function<T, R> converter);
DataTablesOutput<T> findAll(DataTablesInput input, Criteria additionalCriteria);
DataTablesOutput<T> findAll(DataTablesInput input, Criteria additionalCriteria,
Criteria preFilteringCriteria);
DataTablesOutput<R> findAll(DataTablesInput input, Criteria additionalCriteria,
Criteria preFilteringCriteria, Function<T, R> converter);
On the client-side, you can now define your table loading data dynamically :
$(document).ready(function() {
var table = $('table#sample').DataTable({
'ajax' : '/data/users',
'serverSide' : true,
columns : [{
data : 'id'
}, {
data : 'mail'
}, {
data : 'address.town',
render: function (data, type, row) {
return data || '';
}
}, {
// add another column which will not be persisted on the server-side
data : 'anothercolumn',
// ordering and filtering are not available
// (but could be implemented with additional specifications)
orderable : false,
searchable : false,
render : function(data, type, row) {
return row.id ? 'Your id is ' + row.id : '';
}
}]
});
}
Note: You can also retrieve data through POST requests with:
$(document).ready(function() {
var table = $('table#sample').DataTable({
'ajax': {
'contentType': 'application/json',
'url': '/data/users',
'type': 'POST',
'data': function(d) {
return JSON.stringify(d);
}
},
...
// and server-side becomes
@JsonView(DataTablesOutput.View.class)
@RequestMapping(value = "/data/users", method = RequestMethod.POST)
public DataTablesOutput<User> getUsers(@Valid @RequestBody DataTablesInput input) {
return userRepository.findAll(input);
}
In that case, including jquery.spring-friendly.js
is not necessary.