I accidentally came across some JSP colour highlighting issue. It showed in the standard JSP template, but is easily reproducible.
The problem seems to be that // and /* inside a string (quoted sequence) are seen as comments. So in the following line:
String basePath = “http://”+request.getServerName()+”:”+request.getServerPort()+path+”/”;
Everything behind the // is in a comment colour.
But also:
String test = “This is no comment /*”;
Everything behind the /* is in comment colour, and should not be.
Ok, just my 2 pennies..