Restricting the compiler is one possibility - but possibly not the easiest one. You could try to invoke your compiler with the -bootclasspath option, providing a slimmed-down version of the JRE's rt.jar. Then using forbidden classes (or actually: using classes not included in your restricted jar file) will give a compiler error.
Using the runtime security manager and giving only restricted permission to your students code is a better idea. Give the student's classes only the permissions they actually need (which is quite likely almost none, depending on the task to be solved), and they will not be able to do anything malicious, while still being able to use most of the standard API, as long as it doesn't interface with the outside system.
Of course, this still will not prevent an endless loop, which is actually impossible.