本文整理汇总了Java中sample.data.jpa.domain.Hotel类的典型用法代码示例。如果您正苦于以下问题:Java Hotel类的具体用法?Java Hotel怎么用?Java Hotel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Hotel类属于sample.data.jpa.domain包,在下文中一共展示了Hotel类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: executesQueryMethodsCorrectly
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Test
public void executesQueryMethodsCorrectly() {
City city = this.cityRepository
.findAll(new PageRequest(0, 1, Direction.ASC, "name")).getContent()
.get(0);
assertThat(city.getName()).isEqualTo("Atlanta");
Page<HotelSummary> hotels = this.repository.findByCity(city,
new PageRequest(0, 10, Direction.ASC, "name"));
Hotel hotel = this.repository.findByCityAndName(city,
hotels.getContent().get(0).getName());
assertThat(hotel.getName()).isEqualTo("Doubletree");
List<RatingCount> counts = this.repository.findRatingCounts(hotel);
assertThat(counts).hasSize(1);
assertThat(counts.get(0).getRating()).isEqualTo(Rating.AVERAGE);
assertThat(counts.get(0).getCount()).isGreaterThan(1L);
}
开发者ID:p6spy,项目名称:p6spy-it-spring-boot,代码行数:19,代码来源:HotelRepositoryIntegrationTests.java
示例2: executesQueryMethodsCorrectly
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Test
public void executesQueryMethodsCorrectly() {
City city = this.cityRepository
.findAll(new PageRequest(0, 1, Direction.ASC, "name")).getContent()
.get(0);
assertThat(city.getName(), is("Atlanta"));
Page<HotelSummary> hotels = this.repository.findByCity(city,
new PageRequest(0, 10, Direction.ASC, "name"));
Hotel hotel = this.repository.findByCityAndName(city,
hotels.getContent().get(0).getName());
assertThat(hotel.getName(), is("Doubletree"));
List<RatingCount> counts = this.repository.findRatingCounts(hotel);
assertThat(counts, hasSize(1));
assertThat(counts.get(0).getRating(), is(Rating.AVERAGE));
assertThat(counts.get(0).getCount(), is(greaterThan(1L)));
}
开发者ID:Nephilim84,项目名称:contestparser,代码行数:19,代码来源:HotelRepositoryIntegrationTests.java
示例3: getHotel
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Override
public Hotel getHotel(City city, String name) {
Assert.notNull(city, "City must not be null");
Assert.hasLength(name, "Name must not be empty");
return this.hotelRepository.findByCityAndName(city, name);
}
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:7,代码来源:HotelServiceImpl.java
示例4: getReviews
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Override
public Page<Review> getReviews(Hotel hotel, Pageable pageable) {
Assert.notNull(hotel, "Hotel must not be null");
return this.reviewRepository.findByHotel(hotel, pageable);
}
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:6,代码来源:HotelServiceImpl.java
示例5: getReview
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Override
public Review getReview(Hotel hotel, int reviewNumber) {
Assert.notNull(hotel, "Hotel must not be null");
return this.reviewRepository.findByHotelAndIndex(hotel, reviewNumber);
}
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:6,代码来源:HotelServiceImpl.java
示例6: addReview
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Override
public Review addReview(Hotel hotel, ReviewDetails details) {
Review review = new Review(hotel, 1, details);
return this.reviewRepository.save(review);
}
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:6,代码来源:HotelServiceImpl.java
示例7: getReviewSummary
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Override
public ReviewsSummary getReviewSummary(Hotel hotel) {
List<RatingCount> ratingCounts = this.hotelRepository.findRatingCounts(hotel);
return new ReviewsSummaryImpl(ratingCounts);
}
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:6,代码来源:HotelServiceImpl.java
示例8: count
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Query("select r.rating as rating, count(r) as count "
+ "from Review r where r.hotel = ?1 group by r.rating order by r.rating DESC")
List<RatingCount> findRatingCounts(Hotel hotel);
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:4,代码来源:HotelRepository.java
示例9: addReview
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Override
public Review addReview(Hotel hotel, ReviewDetails details) {
Review review = new Review(hotel, 1, details);
return reviewRepository.save(review);
}
开发者ID:Nephilim84,项目名称:contestparser,代码行数:6,代码来源:HotelServiceImpl.java
示例10: count
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Query("select new sample.data.jpa.domain.RatingCount(r.rating, count(r)) "
+ "from Review r where r.hotel = ?1 group by r.rating order by r.rating DESC")
List<RatingCount> findRatingCounts(Hotel hotel);
开发者ID:Nephilim84,项目名称:contestparser,代码行数:4,代码来源:HotelRepository.java
示例11: addReview
import sample.data.jpa.domain.Hotel; //导入依赖的package包/类
@Override
public Review addReview(Hotel hotel, ReviewDetails details) {
Review review = new Review(hotel, details);
return reviewRepository.save(review);
}
开发者ID:joemarmatulac,项目名称:spring-boot-data-jpa-mysql,代码行数:6,代码来源:HotelServiceImpl.java
注:本文中的sample.data.jpa.domain.Hotel类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论