Tweaking build.

This commit is contained in:
Jon Brisbin
2012-05-01 15:10:23 -05:00
parent 1f589b40fd
commit b2564ceeca
2 changed files with 5 additions and 5 deletions

View File

@@ -13,6 +13,6 @@ import org.springframework.data.rest.repository.annotation.RestPathSegment;
public interface PersonRepository extends CrudRepository<Person, Long> {
@RestPathSegment("byName")
public List<Person> findByName(@Param("nme") String name);
public List<Person> findByName(@Param("name") String name);
}