#151 - Tweaked Querydsl web examples to use Querydsl 4.

This commit is contained in:
Oliver Gierke
2016-02-12 12:17:05 +01:00
parent 6ccc59004b
commit 961bd1a284
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015 the original author or authors.
* Copyright 2015-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.
@@ -20,7 +20,7 @@ import org.springframework.data.querydsl.binding.QuerydslBinderCustomizer;
import org.springframework.data.querydsl.binding.QuerydslBindings;
import org.springframework.data.repository.CrudRepository;
import com.mysema.query.types.path.StringPath;
import com.querydsl.core.types.dsl.StringPath;
/**
* Repository to manage {@link User}s. Also implements {@link QueryDslPredicateExecutor} to enable predicate filtering

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015 the original author or authors.
* Copyright 2015-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.
@@ -30,7 +30,7 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.support.ServletUriComponentsBuilder;
import com.mysema.query.types.Predicate;
import com.querydsl.core.types.Predicate;
/**
* Controller to handle web requests for {@link User}s.