Install Java Runtime 1.8
sudo yum install java-1.8.0
OR if you need a java compiler and other developer tools:
sudo yum install java-1.8.0-openjdk-devel
Then use the alternatives command to make Java 1.8 the default.
sudo /usr/sbin/alternatives --config java
sudo /usr/sbin/alternatives --config javac
# etc
You can remove Java 1.7 with
sudo yum remove java-1.7.0-openjdk