Yes, there are quite some systems still uses. One popular Java library is Drools. They also have a section in their docs dedicated for the history of expert system (or knowledge representation and reasoning):
https://docs.jboss.org/drools/release/6.5.0.Final/drools-docs/html/ch05.html#d0e4247
Rule engines are even used in games. The HD remake of Age of Empires II for example used them. Here is my copy of the circa 30,000 lines of code rules file:
https://gist.github.com/hastebrot/ddac3624aaf7963f59a798f8ad5a0a16
Using Java sometimes means that they neglect the frontend almost completely. I saw systems where they only offered a textarea widget to author the rules, with the assumption, the business analysts will keep the rules simple (less then 10 lines of code) and everything will be fine. I saw rules with 100 lines of code.