HHH-6536, set TCCL to the Hibernate classloader
This commit is contained in:
parent
b336bf5d53
commit
07d15fb39b
|
@ -23,11 +23,12 @@
|
|||
*
|
||||
*/
|
||||
package org.hibernate.hql.internal.ast;
|
||||
import java.io.InputStream;
|
||||
import java.io.Reader;
|
||||
import antlr.Token;
|
||||
import org.hibernate.QueryException;
|
||||
import org.hibernate.hql.internal.antlr.HqlBaseLexer;
|
||||
import antlr.Token;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.io.Reader;
|
||||
|
||||
/**
|
||||
* Custom lexer for the HQL grammar. Extends the base lexer generated by ANTLR
|
||||
|
@ -48,9 +49,21 @@ class HqlLexer extends HqlBaseLexer {
|
|||
}
|
||||
|
||||
public void setTokenObjectClass(String cl) {
|
||||
Thread thread = null;
|
||||
ClassLoader contextClassLoader = null;
|
||||
try {
|
||||
// workaround HHH-6536, by setting TCCL to the Hibernate classloader
|
||||
thread = Thread.currentThread();
|
||||
contextClassLoader = thread.getContextClassLoader();
|
||||
thread.setContextClassLoader(HqlToken.class.getClassLoader());
|
||||
|
||||
// Ignore the token class name parameter, and use a specific token class.
|
||||
super.setTokenObjectClass( HqlToken.class.getName() );
|
||||
}
|
||||
finally {
|
||||
thread.setContextClassLoader( contextClassLoader );
|
||||
}
|
||||
}
|
||||
|
||||
protected void setPossibleID(boolean possibleID) {
|
||||
this.possibleID = possibleID;
|
||||
|
|
Loading…
Reference in New Issue