Problem with interceptors - module java.base does not "opens java.util" to unnamed module

Hi,

I created a new ColdBox 6.8.1 app, and I’m running it with Windows Server 2016 / IIS 10 / ColdFusion 2018 / Oracle Java SE Development Kit 18.0.1 (64-bit). Everything worked without issues, until I added an interceptor following these instructions: How do they work? - ColdBox HMVC Documentation

I made the following changes:

config/Coldbox.cfc
	interceptors = [
		{
			class   = "interceptors.myInterceptor", //by default this should be interceptors.yourcfcname  
			name    = "myInterceptor",
			properties = {}
		}
	];
interceptors/myInterceptor.cfc
	component extends="coldbox.system.Interceptor"{

		function configure(){}

		function preProcess( event, interceptData, buffer, rc, prc ){}
	}	

…and then refreshed the app home page, and got the error pasted below. Any idea what might be causing this?

An exception occurred while calling the function each.
java.lang.reflect.InaccessibleObjectException: Unable to make public java.lang.Object java.util.Collections$SynchronizedMap.remove(java.lang.Object) accessible: module java.base does not "opens java.util" to unnamed module @37a0ec3c
 
The error occurred in c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 373
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 158
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 154
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 112
Called from c:/work/my_test_app/coldbox/system/web/services/LoaderService.cfc: line 70
Called from c:/work/my_test_app/coldbox/system/Bootstrap.cfc: line 110
Called from c:/work/my_test_app/coldbox/system/Bootstrap.cfc: line 167
Called from c:/work/my_test_app/coldbox/system/Bootstrap.cfc: line 503
Called from c:/work/my_test_app/Application.cfc: line 51
Called from c:/work/my_test_app/coldbox/system/core/events/EventPool.cfc: line 61
Called from c:/work/my_test_app/coldbox/system/web/context/InterceptorState.cfc: line 101
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 537
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 379
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 373
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 158
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 154
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 112
Called from c:/work/my_test_app/coldbox/system/web/services/LoaderService.cfc: line 70
Called from c:/work/my_test_app/coldbox/system/Bootstrap.cfc: line 110
Called from c:/work/my_test_app/coldbox/system/Bootstrap.cfc: line 167
Called from c:/work/my_test_app/coldbox/system/Bootstrap.cfc: line 503
Called from c:/work/my_test_app/Application.cfc: line 51
Called from c:/work/my_test_app/coldbox/system/core/events/EventPool.cfc: line 61
Called from c:/work/my_test_app/coldbox/system/web/context/InterceptorState.cfc: line 101
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 537
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 379
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 373
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 158
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 154
Called from c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc: line 112
Called from c:/work/my_test_app/coldbox/system/web/services/LoaderService.cfc: line 70
Called from c:/work/my_test_app/coldbox/system/Bootstrap.cfc: line 110
Called from c:/work/my_test_app/coldbox/system/Bootstrap.cfc: line 167
Called from c:/work/my_test_app/coldbox/system/Bootstrap.cfc: line 503
Called from c:/work/my_test_app/Application.cfc: line 51
371 : 
372 : 			// Parse Interception Points
373 : 			parseMetadata( getMetadata( oInterceptor ), {} ).each( function( stateKey, stateValue ){
374 : 				// Register the point
375 : 				registerInterceptionPoint(

Browser  	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Remote Address  	xxx.xxx.xxx.xxx
Referrer  	
Date/Time  	25-Aug-22 08:38 AM
Stack Trace
at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTOR.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:373) at cfInterceptorService2ecfc752960383$func_CF_ANONYMOUSCLOSURE_434.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:158) at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTORS.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:154) at cfInterceptorService2ecfc752960383$funcONCONFIGURATIONLOAD.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:112) at cfLoaderService2ecfc1620566580$funcLOADAPPLICATION.runFunction(c:/work/my_test_app/coldbox/system/web/services/LoaderService.cfc:70) at cfBootstrap2ecfc1328707080$funcLOADCOLDBOX.runFunction(c:/work/my_test_app/coldbox/system/Bootstrap.cfc:110) at cfBootstrap2ecfc1328707080$funcRELOADCHECKS.runFunction(c:/work/my_test_app/coldbox/system/Bootstrap.cfc:167) at cfBootstrap2ecfc1328707080$funcONREQUESTSTART.runFunction(c:/work/my_test_app/coldbox/system/Bootstrap.cfc:503) at cfApplication2ecfc925137984$funcONREQUESTSTART.runFunction(c:/work/my_test_app/Application.cfc:51) at cfEventPool2ecfc113226133$funcEXISTS.runFunction(c:/work/my_test_app/coldbox/system/core/events/EventPool.cfc:61) at cfInterceptorState2ecfc1765208235$funcEXISTS.runFunction(c:/work/my_test_app/coldbox/system/web/context/InterceptorState.cfc:101) at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTIONPOINT.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:537) at cfInterceptorService2ecfc752960383$func_CF_ANONYMOUSCLOSURE_440.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:379) at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTOR.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:373) at cfInterceptorService2ecfc752960383$func_CF_ANONYMOUSCLOSURE_434.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:158) at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTORS.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:154) at cfInterceptorService2ecfc752960383$funcONCONFIGURATIONLOAD.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:112) at cfLoaderService2ecfc1620566580$funcLOADAPPLICATION.runFunction(c:/work/my_test_app/coldbox/system/web/services/LoaderService.cfc:70) at cfBootstrap2ecfc1328707080$funcLOADCOLDBOX.runFunction(c:/work/my_test_app/coldbox/system/Bootstrap.cfc:110) at cfBootstrap2ecfc1328707080$funcRELOADCHECKS.runFunction(c:/work/my_test_app/coldbox/system/Bootstrap.cfc:167) at cfBootstrap2ecfc1328707080$funcONREQUESTSTART.runFunction(c:/work/my_test_app/coldbox/system/Bootstrap.cfc:503) at cfApplication2ecfc925137984$funcONREQUESTSTART.runFunction(c:/work/my_test_app/Application.cfc:51) at cfEventPool2ecfc113226133$funcEXISTS.runFunction(c:/work/my_test_app/coldbox/system/core/events/EventPool.cfc:61) at cfInterceptorState2ecfc1765208235$funcEXISTS.runFunction(c:/work/my_test_app/coldbox/system/web/context/InterceptorState.cfc:101) at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTIONPOINT.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:537) at cfInterceptorService2ecfc752960383$func_CF_ANONYMOUSCLOSURE_440.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:379) at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTOR.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:373) at cfInterceptorService2ecfc752960383$func_CF_ANONYMOUSCLOSURE_434.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:158) at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTORS.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:154) at cfInterceptorService2ecfc752960383$funcONCONFIGURATIONLOAD.runFunction(c:/work/my_test_app/coldbox/system/web/services/InterceptorService.cfc:112) at cfLoaderService2ecfc1620566580$funcLOADAPPLICATION.runFunction(c:/work/my_test_app/coldbox/system/web/services/LoaderService.cfc:70) at cfBootstrap2ecfc1328707080$funcLOADCOLDBOX.runFunction(c:/work/my_test_app/coldbox/system/Bootstrap.cfc:110) at cfBootstrap2ecfc1328707080$funcRELOADCHECKS.runFunction(c:/work/my_test_app/coldbox/system/Bootstrap.cfc:167) at cfBootstrap2ecfc1328707080$funcONREQUESTSTART.runFunction(c:/work/my_test_app/coldbox/system/Bootstrap.cfc:503) at cfApplication2ecfc925137984$funcONREQUESTSTART.runFunction(c:/work/my_test_app/Application.cfc:51)

com.google.common.util.concurrent.UncheckedExecutionException: java.lang.reflect.InaccessibleObjectException: Unable to make public java.lang.Object java.util.Collections$SynchronizedMap.remove(java.lang.Object) accessible: module java.base does not "opens java.util" to unnamed module @37a0ec3c
	at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2199)
	at com.google.common.cache.LocalCache.get(LocalCache.java:3932)
	at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3936)
	at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4806)
	at coldfusion.runtime.java.ReflectionCache.get(ReflectionCache.java:39)
	at coldfusion.runtime.StructBean.<init>(StructBean.java:79)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3721)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3604)
	at cfEventPool2ecfc113226133$funcEXISTS.runFunction(C:\work\facility_manager_app_eetu2\coldbox\system\core\events\EventPool.cfc:61)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:485)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4175)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4155)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3647)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3604)
	at cfInterceptorState2ecfc1765208235$funcEXISTS.runFunction(c:\work\facility_manager_app_eetu2\coldbox\system\web\context\InterceptorState.cfc:101)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:830)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:613)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:438)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3627)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3604)
	at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTIONPOINT.runFunction(c:\work\facility_manager_app_eetu2\coldbox\system\web\services\InterceptorService.cfc:537)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:609)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4116)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4097)
	at cfInterceptorService2ecfc752960383$func_CF_ANONYMOUSCLOSURE_440.runFunction(c:\work\facility_manager_app_eetu2\coldbox\system\web\services\InterceptorService.cfc:379)
	at coldfusion.runtime.Closure.invoke(Closure.java:111)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4175)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4155)
	at coldfusion.runtime.StructUtils.StructEach(StructUtils.java:146)
	at coldfusion.runtime.CFPage.StructEach(CFPage.java:6501)
	at coldfusion.runtime.CfJspPage.invokeMethodHandle(CfJspPage.java:3834)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3710)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3604)
	at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTOR.runFunction(c:\work\facility_manager_app_eetu2\coldbox\system\web\services\InterceptorService.cfc:373)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:609)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4116)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4097)
	at cfInterceptorService2ecfc752960383$func_CF_ANONYMOUSCLOSURE_434.runFunction(c:\work\facility_manager_app_eetu2\coldbox\system\web\services\InterceptorService.cfc:158)
	at coldfusion.runtime.Closure.invoke(Closure.java:111)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4175)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4155)
	at coldfusion.runtime.ArrayUtil.ArrayEach(ArrayUtil.java:842)
	at coldfusion.runtime.CFPage.ArrayEach(CFPage.java:1402)
	at coldfusion.runtime.CfJspPage.invokeMethodHandle(CfJspPage.java:3777)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3710)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3604)
	at cfInterceptorService2ecfc752960383$funcREGISTERINTERCEPTORS.runFunction(c:\work\facility_manager_app_eetu2\coldbox\system\web\services\InterceptorService.cfc:154)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4175)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4155)
	at cfInterceptorService2ecfc752960383$funcONCONFIGURATIONLOAD.runFunction(c:\work\facility_manager_app_eetu2\coldbox\system\web\services\InterceptorService.cfc:112)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:830)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:613)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:438)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3627)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3604)
	at cfLoaderService2ecfc1620566580$funcLOADAPPLICATION.runFunction(c:\work\facility_manager_app_eetu2\coldbox\system\web\services\LoaderService.cfc:70)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:485)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:830)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:613)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:438)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3627)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3604)
	at cfBootstrap2ecfc1328707080$funcLOADCOLDBOX.runFunction(C:\work\facility_manager_app_eetu2\coldbox\system\Bootstrap.cfc:110)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4175)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4155)
	at cfBootstrap2ecfc1328707080$funcRELOADCHECKS.runFunction(C:\work\facility_manager_app_eetu2\coldbox\system\Bootstrap.cfc:167)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4175)
	at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4155)
	at cfBootstrap2ecfc1328707080$funcONREQUESTSTART.runFunction(C:\work\facility_manager_app_eetu2\coldbox\system\Bootstrap.cfc:503)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:485)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:830)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:613)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:438)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3627)
	at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:3604)
	at cfApplication2ecfc925137984$funcONREQUESTSTART.runFunction(C:\work\facility_manager_app_eetu2\Application.cfc:51)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:554)
	at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:485)
	at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:448)
	at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:399)
	at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:372)
	at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:288)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:830)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:613)
	at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:438)
	at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:115)
	at coldfusion.runtime.AppEventInvoker.onRequestStart(AppEventInvoker.java:286)
	at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:544)
	at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
	at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
	at coldfusion.filter.PathFilter.invoke(PathFilter.java:162)
	at coldfusion.filter.IpFilter.invoke(IpFilter.java:45)
	at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:96)
	at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
	at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
	at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:60)
	at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
	at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
	at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
	at coldfusion.CfmServlet.service(CfmServlet.java:226)
	at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:311)
	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)
	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
	at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:46)
	at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:47)
	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
	at coldfusion.inspect.weinre.MobileDeviceDomInspectionFilter.doFilter(MobileDeviceDomInspectionFilter.java:57)
	at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:47)
	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)
	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)
	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)
	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)
	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)
	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:377)
	at org.apache.coyote.ajp.AjpProcessor.service(AjpProcessor.java:463)
	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)
	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)
	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
	at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)
	at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
	at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make public java.lang.Object java.util.Collections$SynchronizedMap.remove(java.lang.Object) accessible: module java.base does not "opens java.util" to unnamed module @37a0ec3c
	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:354)
	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
	at java.base/java.lang.reflect.Method.checkCanSetAccessible(Method.java:200)
	at java.base/java.lang.reflect.Method.setAccessible(Method.java:194)
	at coldfusion.runtime.java.ObjectHandler.Initialize(ObjectHandler.java:61)
	at coldfusion.runtime.java.ObjectHandler.<init>(ObjectHandler.java:30)
	at coldfusion.runtime.java.ReflectionCache$1.load(ReflectionCache.java:30)
	at coldfusion.runtime.java.ReflectionCache$1.load(ReflectionCache.java:28)
	at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3522)
	at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2315)
	at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2278)
	at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2193)
	... 198 more

This sounds like your JRE / JDK is way too new - it sounds like the same story as many others running new and unsupported java versions.

Java 8 works, Java 11 works, some people can get newer versions to work, 18 is way too new for most CFML Engines.

I’d point your install at a stable supported JRE like Java 11.

Thank you for the quick reply! I tested with older version of Java, and that indeed solved the problem.