Sha256: 582653ca756b39e1f668129a1bed1020bd58f4d53f4f65491fac23d9fb4f5004
Contents?: true
Size: 1.14 KB
Versions: 10
Compression:
Stored size: 1.14 KB
Contents
module Trinidad module Lifecycle class War < Base def lifecycleEvent(event) case event.type when Trinidad::Tomcat::Lifecycle::AFTER_STOP_EVENT destroy_expanded_app when Trinidad::Tomcat::Lifecycle::BEFORE_START_EVENT expand_app(event.lifecycle) end super end def configure_defaults(context) super configure_class_loader(context) end def configure_class_loader(context) loader = Trinidad::Tomcat::WebappLoader.new(@webapp.class_loader) loader.container = context context.loader = loader end def destroy_expanded_app require 'fileutils' FileUtils.rm_rf @webapp.web_app_dir.gsub(/\.war$/, '') end def expand_app(context) if !File.exist?(context.doc_base) host = context.parent war_file = java.io.File.new(@webapp.web_app_dir) war = java.net.URL.new("jar:" + war_file.toURI.toURL.to_s + "!/") path_name = File.basename(context.doc_base) Trinidad::Tomcat::ExpandWar.expand(host, war, path_name) end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems