• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java City类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中sample.data.jpa.domain.City的典型用法代码示例。如果您正苦于以下问题:Java City类的具体用法?Java City怎么用?Java City使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



City类属于sample.data.jpa.domain包,在下文中一共展示了City类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: findCities

import sample.data.jpa.domain.City; //导入依赖的package包/类
@Override
public Page<City> findCities(CitySearchCriteria criteria, Pageable pageable) {

	Assert.notNull(criteria, "Criteria must not be null");
	String name = criteria.getName();

	if (!StringUtils.hasLength(name)) {
		return this.cityRepository.findAll(null);
	}

	String country = "";
	int splitPos = name.lastIndexOf(",");

	if (splitPos >= 0) {
		country = name.substring(splitPos + 1);
		name = name.substring(0, splitPos);
	}

	return this.cityRepository
			.findByNameContainingAndCountryContainingAllIgnoringCase(name.trim(),
					country.trim(), pageable);
}
 
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:23,代码来源:CityServiceImpl.java


示例2: executesQueryMethodsCorrectly

import sample.data.jpa.domain.City; //导入依赖的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


示例3: executesQueryMethodsCorrectly

import sample.data.jpa.domain.City; //导入依赖的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


示例4: findCities

import sample.data.jpa.domain.City; //导入依赖的package包/类
@Override
public Page<City> findCities(CitySearchCriteria criteria, Pageable pageable) {

	Assert.notNull(criteria, "Criteria must not be null");
	String name = criteria.getName();

	if (!StringUtils.hasLength(name)) {
		return this.cityRepository.findAll(pageable);
	}

	String country = "";
	int splitPos = name.lastIndexOf(",");

	if (splitPos >= 0) {
		country = name.substring(splitPos + 1);
		name = name.substring(0, splitPos);
	}

	return this.cityRepository
			.findByNameContainingAndCountryContainingAllIgnoringCase(name.trim(),
					country.trim(), pageable);
}
 
开发者ID:joemarmatulac,项目名称:spring-boot-data-jpa-mysql,代码行数:23,代码来源:CityServiceImpl.java


示例5: getHotel

import sample.data.jpa.domain.City; //导入依赖的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


示例6: avg

import sample.data.jpa.domain.City; //导入依赖的package包/类
@Query("select h.city as city, h.name as name, avg(r.rating) as averageRating "
		+ "from Hotel h left outer join h.reviews r where h.city = ?1 group by h")
Page<HotelSummary> findByCity(City city, Pageable pageable);
 
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:4,代码来源:HotelRepository.java


示例7: findByNameContainingAndCountryContainingAllIgnoringCase

import sample.data.jpa.domain.City; //导入依赖的package包/类
Page<City> findByNameContainingAndCountryContainingAllIgnoringCase(String name,
String country, Pageable pageable);
 
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:3,代码来源:CityRepository.java


示例8: getCity

import sample.data.jpa.domain.City; //导入依赖的package包/类
@Override
public City getCity(String name, String country) {
	Assert.notNull(name, "Name must not be null");
	Assert.notNull(country, "Country must not be null");
	return this.cityRepository.findByNameAndCountryAllIgnoringCase(name, country);
}
 
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:7,代码来源:CityServiceImpl.java


示例9: getHotels

import sample.data.jpa.domain.City; //导入依赖的package包/类
@Override
public Page<HotelSummary> getHotels(City city, Pageable pageable) {
	Assert.notNull(city, "City must not be null");
	return this.hotelRepository.findByCity(city, pageable);
}
 
开发者ID:bohnman,项目名称:squiggly-filter-jackson,代码行数:6,代码来源:CityServiceImpl.java


示例10: findsFirstPageOfCities

import sample.data.jpa.domain.City; //导入依赖的package包/类
@Test
public void findsFirstPageOfCities() {

	Page<City> cities = this.repository.findAll(new PageRequest(0, 10));
	assertThat(cities.getTotalElements()).isGreaterThan(20L);
}
 
开发者ID:p6spy,项目名称:p6spy-it-spring-boot,代码行数:7,代码来源:CityRepositoryIntegrationTests.java


示例11: avg

import sample.data.jpa.domain.City; //导入依赖的package包/类
@Query("select new sample.data.jpa.domain.HotelSummary(h.city, h.name, avg(r.rating)) "
		+ "from Hotel h left outer join h.reviews r where h.city = ?1 group by h")
Page<HotelSummary> findByCity(City city, Pageable pageable);
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:4,代码来源:HotelRepository.java


示例12: findsFirstPageOfCities

import sample.data.jpa.domain.City; //导入依赖的package包/类
@Test
public void findsFirstPageOfCities() {

	Page<City> cities = this.repository.findAll(new PageRequest(0, 10));
	assertThat(cities.getTotalElements(), is(greaterThan(20L)));
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:7,代码来源:CityRepositoryIntegrationTests.java



注:本文中的sample.data.jpa.domain.City类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java DirectionsRoute类代码示例发布时间:2022-05-22
下一篇:
Java INodeDirectory类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap