jetty サーバーを作成し、プログラムによって動的にサーブレットを追加したいと考えています。
ロギングとコンソールをセットアップしてから、次のようにサーバーの作成に進みます。
Connector httpConn = null;
Connector httpsConn = null;
HandlerCollection handlers = new HandlerCollection();
httpConn = new SelectChannelConnector();
httpConn.setPort( httpPort );
httpConn.setName( "HTTPConnector" ); // simillar setup for httpsConn if needed
contextHandlers = new ContextHandlerCollection();
if( launchServlets ) {
// this is more or less the same servlet creation code as below but for launching
// static servlets (in this example, there are none)
holders = initializeServlets( configFilePath );
}
handlers.addHandler( contextHandlers );
server = new Server();
if( httpConn != null ) {
server.addConnector( httpConn );
}
if( httpsConn != null ) {
server.addConnector( httpsConn );
}
server.setGracefulShutdown( 1000 ); /
server.setStopAtShutdown( true );
server.setHandler( handlers );
server.start();
if( launchServlets ) {
// Catch any exception that occurs during servlet init()
// (must be called after server.start() )
for( int i = 0; i < holders.length; i++ ) {
if( holders[ i ] != null ) {
Exception initEx = holders[ i ].getUnavailableException();
if( initEx != null ) {
server.stop();
throw initEx;
}
}
}
}
したがって、サーブレットを開始する必要がある場合は、次のようにします。
boolean isSecureOnly = false; // function that decides suppressed for now
String[] connectors;
MyServlet myServlet = new MyServlet();
ServletHolder holder = new ServletHolder( myServlet );
holder.setInitParameter( Constants.CONF_INIT_STRING_PARAM, configString );
holder.setInitParameter( Constants.CONF_INIT_NAME_PARAM, myName );
ServletContextHandler handler = new ServletContextHandler();
if( details != null ) {
details.sch = handler;
}
String contextPath = MyConfig.getContextPath( myProps, myName );
handler.setContextPath( contextPath );
handler.setAllowNullPathInfo( true );
// bind the servlet to the connectors it should be listening to
if( isSsl ) {
if( isSecureOnly ) {
connectors = new String[ 1 ];
connectors[0] = Constants.CONF_HTTPS_CONNECTOR;
} else {
connectors = new String[ 2 ];
connectors[0] = Constants.CONF_HTTPS_CONNECTOR;
connectors[1] = Constants.CONF_HTTP_CONNECTOR;
}
} else {
if( isSecureOnly ) {
throw new ConfigException( 50051 );
}
connectors = new String[ 1 ];
connectors[0] = Constants.CONF_HTTP_CONNECTOR;
}
handler.setConnectorNames( connectors );
if( myName != null ) {
handler.setDisplayName( MyMessage.message( 10025, myName ) );
} else {
handler.setDisplayName( MyMessage.message( 10001 ) );
}
handler.addServlet( holder, "/*" );
contextHandlers.addHandler( handler );
contextHandlers.mapContexts();
Exception initEx = holder.getUnavailableException();
if( initEx != null ) {
// deal with error
}
私の動的サーブレット起動コードはエラーなく動作しているように見えますが、コンソールにはサーブレットの初期化が表示されません。launchServlets=true の場合、コードはサーブレットを静的に起動し、すべて問題ありませんが、動的に起動したいと考えています。
サーブレットを手動で初期化する必要がありますか (サーブレットは独自のメモリ空間に分離されていると思いました)? Jetty に新しいサーブレットを開始するように指示するにはどうすればよいですか?
更新: これまでのところ、サーブレットを起動する唯一の方法は、server.stop()/server.join()/server.start() によるものです。既存のサーブレットへのサービスを中断しないように、サーブレットを追加 (および削除 - しかしそれはおまけの質問です) したいですか?
jetty-all-server-8.1.3 とサーブレット api 3.0 を使用しています
あなたの助け/ヒントを前もってありがとう!