From the spring documentation :
@Cacheable(value=\"bookCache\", key=\"isbn\") public Book findBook(ISBN isbn, boolean checkWarehouse, boolean includeUsed) >
This will work
@Cacheable(value="bookCache", key="#checkwarehouse.toString().append(#isbn.toString())")