Skip to content
This repository has been archived by the owner on Dec 3, 2021. It is now read-only.

fix: make Jettys threads use gravitee context class loader #222

Merged
merged 1 commit into from Nov 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,37 @@
/**
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.gravitee.rest.api.standalone.jetty;

import java.util.concurrent.ArrayBlockingQueue;
import org.eclipse.jetty.util.thread.QueuedThreadPool;

/**
* JettyQueueThreadPool extends Jetty's default QueuedThreadPool,
* Overriding thread creation to make them use the Gravitee context class loader.
*/
public class JettyQueuedThreadPool extends QueuedThreadPool {

public JettyQueuedThreadPool(int poolMaxThreads, int poolMinThreads, int poolIdleTimeout, ArrayBlockingQueue<Runnable> queue) {
super(poolMaxThreads, poolMinThreads, poolIdleTimeout, queue);
}

@Override
public Thread newThread(Runnable runnable) {
Thread thread = super.newThread(runnable);
thread.setContextClassLoader(Thread.currentThread().getContextClassLoader());
return thread;
}
}
Expand Up @@ -41,7 +41,7 @@ public class JettyServerFactory implements FactoryBean<Server> {
@Override
public Server getObject() throws Exception {
// Setup ThreadPool
QueuedThreadPool threadPool = new QueuedThreadPool(
QueuedThreadPool threadPool = new JettyQueuedThreadPool(
jettyConfiguration.getPoolMaxThreads(),
jettyConfiguration.getPoolMinThreads(),
jettyConfiguration.getPoolIdleTimeout(),
Expand Down