Package com.techempower.spring.domain

Examples of com.techempower.spring.domain.World


    List<World> worlds = new ArrayList<World>(queryCount);
    Random random = ThreadLocalRandom.current();

    for (int i = 0; i < queryCount; i++) {
      World world = this.worldRepository.findOne(random.nextInt(DB_ROWS) + 1);
      world.setRandomNumber(random.nextInt(DB_ROWS) + 1);
      this.worldRepository.save(world);
      worlds.add(world);
    }

    return worlds;
View Full Code Here

TOP

Related Classes of com.techempower.spring.domain.World

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.