`
Kyll
  • 浏览: 101490 次
  • 性别: Icon_minigender_1
  • 来自: 长春
社区版块
存档分类
最新评论

IntelliJ IDEA 9 以后版本, WEB 项目丢失 Tomcat Log 选项卡的解决方法

阅读更多
在使用 IntelliJ IDEA 9 以后的版本建立 WEB 程序时,
正常情况下, 在 DEBUG 窗口, 会有三个选项卡, 分别是:
“Debugger”“Server”“Tomcat Log”
但, 偶尔的, 不明原因的情况下, 会丢失“Tomcat Log”选项卡,
无论怎样配置, 都无法出现, 造成调试的不便。

其实, 是可以更改项目的配置文件 workspace.xml 文件, 来重现“Tomcat Log”选项卡。
以下贴出一个正常的 workspace.xml 文件, 对照不同的部分修改后, 重新加载项目即可(IntelliJ 会自动提示)

注意这行配置:
<predefined_log_file id="TOMCAT_LOCALHOST_LOG_ID" enabled="true" />


workspace.xml 如下:
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="ChangeListManager">
    <list default="true" readonly="true" id="96781683-fde7-43df-8f72-538c66b029df" name="Default" comment="" />
    <ignored path="webgame.iws" />
    <ignored path=".idea/workspace.xml" />
    <option name="TRACKING_ENABLED" value="true" />
    <option name="SHOW_DIALOG" value="false" />
    <option name="HIGHLIGHT_CONFLICTS" value="true" />
    <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
    <option name="LAST_RESOLUTION" value="IGNORE" />
  </component>
  <component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
  <component name="CreatePatchCommitExecutor">
    <option name="PATCH_PATH" value="" />
    <option name="REVERSE_PATCH" value="false" />
  </component>
  <component name="DaemonCodeAnalyzer">
    <disable_hints />
  </component>
  <component name="DebuggerManager">
    <breakpoint_any>
      <breakpoint>
        <option name="NOTIFY_CAUGHT" value="true" />
        <option name="NOTIFY_UNCAUGHT" value="true" />
        <option name="ENABLED" value="false" />
        <option name="LOG_ENABLED" value="false" />
        <option name="LOG_EXPRESSION_ENABLED" value="false" />
        <option name="SUSPEND_POLICY" value="SuspendAll" />
        <option name="COUNT_FILTER_ENABLED" value="false" />
        <option name="COUNT_FILTER" value="0" />
        <option name="CONDITION_ENABLED" value="false" />
        <option name="CLASS_FILTERS_ENABLED" value="false" />
        <option name="INSTANCE_FILTERS_ENABLED" value="false" />
        <option name="CONDITION" value="" />
        <option name="LOG_MESSAGE" value="" />
      </breakpoint>
      <breakpoint>
        <option name="NOTIFY_CAUGHT" value="true" />
        <option name="NOTIFY_UNCAUGHT" value="true" />
        <option name="ENABLED" value="false" />
        <option name="LOG_ENABLED" value="false" />
        <option name="LOG_EXPRESSION_ENABLED" value="false" />
        <option name="SUSPEND_POLICY" value="SuspendAll" />
        <option name="COUNT_FILTER_ENABLED" value="false" />
        <option name="COUNT_FILTER" value="0" />
        <option name="CONDITION_ENABLED" value="false" />
        <option name="CLASS_FILTERS_ENABLED" value="false" />
        <option name="INSTANCE_FILTERS_ENABLED" value="false" />
        <option name="CONDITION" value="" />
        <option name="LOG_MESSAGE" value="" />
      </breakpoint>
    </breakpoint_any>
    <breakpoint_rules />
    <ui_properties />
  </component>
  <component name="FavoritesManager">
    <favorites_list name="webgame" />
  </component>
  <component name="FileEditorManager">
    <leaf>
      <file leaf-file-name="EngineController.java" pinned="false" current="false" current-in-tab="false">
        <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/engine/controller/EngineController.java">
          <provider selected="true" editor-type-id="text-editor">
            <state line="35" column="44" selection-start="1267" selection-end="1267" vertical-scroll-proportion="0.0">
              <folding />
            </state>
          </provider>
        </entry>
      </file>
      <file leaf-file-name="EngineFacade.java" pinned="false" current="false" current-in-tab="false">
        <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/engine/facade/EngineFacade.java">
          <provider selected="true" editor-type-id="text-editor">
            <state line="2" column="17" selection-start="58" selection-end="58" vertical-scroll-proportion="0.0">
              <folding />
            </state>
          </provider>
        </entry>
      </file>
      <file leaf-file-name="EngineFacadeImpl.java" pinned="false" current="false" current-in-tab="false">
        <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/engine/facade/impl/EngineFacadeImpl.java">
          <provider selected="true" editor-type-id="text-editor">
            <state line="6" column="13" selection-start="168" selection-end="168" vertical-scroll-proportion="0.0">
              <folding />
            </state>
          </provider>
        </entry>
      </file>
      <file leaf-file-name="sqlmap-config.xml" pinned="false" current="false" current-in-tab="false">
        <entry file="file://$PROJECT_DIR$/src/config/sqlmap-config.xml">
          <provider selected="true" editor-type-id="text-editor">
            <state line="21" column="73" selection-start="712" selection-end="712" vertical-scroll-proportion="0.0">
              <folding />
            </state>
          </provider>
        </entry>
      </file>
      <file leaf-file-name="Player.xml" pinned="false" current="false" current-in-tab="false">
        <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/player/dao/ibatis/sqlmap/Player.xml">
          <provider selected="true" editor-type-id="text-editor">
            <state line="5" column="25" selection-start="182" selection-end="182" vertical-scroll-proportion="0.0">
              <folding />
            </state>
          </provider>
        </entry>
      </file>
      <file leaf-file-name="Scene.xml" pinned="false" current="false" current-in-tab="false">
        <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/scene/dao/ibatis/sqlmap/Scene.xml">
          <provider selected="true" editor-type-id="text-editor">
            <state line="5" column="24" selection-start="181" selection-end="181" vertical-scroll-proportion="0.0">
              <folding />
            </state>
          </provider>
        </entry>
      </file>
      <file leaf-file-name="index.jsp" pinned="false" current="false" current-in-tab="false">
        <entry file="file://$PROJECT_DIR$/web/index.jsp">
          <provider selected="true" editor-type-id="text-editor">
            <state line="6" column="26" selection-start="116" selection-end="116" vertical-scroll-proportion="0.0">
              <folding />
            </state>
          </provider>
        </entry>
      </file>
      <file leaf-file-name="spring-servlet.xml" pinned="false" current="false" current-in-tab="false">
        <entry file="file://$PROJECT_DIR$/web/WEB-INF/spring-servlet.xml">
          <provider selected="true" editor-type-id="text-editor">
            <state line="8" column="0" selection-start="593" selection-end="593" vertical-scroll-proportion="0.0">
              <folding />
            </state>
          </provider>
        </entry>
      </file>
      <file leaf-file-name="spring-context.xml" pinned="false" current="false" current-in-tab="false">
        <entry file="file://$PROJECT_DIR$/web/WEB-INF/spring-context.xml">
          <provider selected="true" editor-type-id="text-editor">
            <state line="27" column="49" selection-start="1621" selection-end="1621" vertical-scroll-proportion="0.0">
              <folding>
                <element signature="tag#prop#0;tag#props#0;tag#property#2;tag#bean#0;tag#beans#0" expanded="true" />
                <element signature="tag#prop#1;tag#props#0;tag#property#2;tag#bean#0;tag#beans#0" expanded="true" />
                <element signature="tag#prop#2;tag#props#0;tag#property#2;tag#bean#0;tag#beans#0" expanded="true" />
              </folding>
            </state>
          </provider>
        </entry>
      </file>
      <file leaf-file-name="jdbc.properties" pinned="false" current="true" current-in-tab="true">
        <entry file="file://$PROJECT_DIR$/src/config/jdbc.properties">
          <provider selected="true" editor-type-id="text-editor">
            <state line="4" column="0" selection-start="159" selection-end="159" vertical-scroll-proportion="0.2060606">
              <folding />
            </state>
          </provider>
        </entry>
      </file>
    </leaf>
  </component>
  <component name="FindManager">
    <FindUsagesManager>
      <setting name="OPEN_NEW_TAB" value="false" />
    </FindUsagesManager>
  </component>
  <component name="IdeDocumentHistory">
    <option name="changedFiles">
      <list>
        <option value="$PROJECT_DIR$/src/main/org/kyll/webgame/business/model/User.java" />
        <option value="$PROJECT_DIR$/web/WEB-INF/web.xml" />
        <option value="$PROJECT_DIR$/src/main/org/kyll/webgame/engine/facade/EngineFacade.java" />
        <option value="$PROJECT_DIR$/web/WEB-INF/spring-context.xml" />
        <option value="$PROJECT_DIR$/web/WEB-INF/spring-servlet.xml" />
        <option value="$PROJECT_DIR$/src/main/org/kyll/webgame/item/controller/ItemController.java" />
        <option value="$PROJECT_DIR$/src/main/org/kyll/webgame/item/dao/ibatis/sqlmap/Item.xml" />
        <option value="$PROJECT_DIR$/src/main/org/kyll/webgame/player/dao/ibatis/sqlmap/Player.xml" />
        <option value="$PROJECT_DIR$/src/main/org/kyll/webgame/scene/dao/ibatis/sqlmap/Scene.xml" />
        <option value="$PROJECT_DIR$/src/config/sqlmap-config.xml" />
        <option value="$PROJECT_DIR$/web/WEB-INF/webpage/engine/start.jsp" />
        <option value="$PROJECT_DIR$/web/index.jsp" />
        <option value="$PROJECT_DIR$/src/main/org/kyll/webgame/engine/controller/EngineController.java" />
      </list>
    </option>
  </component>
  <component name="LogFilters">
    <option name="FILTER_ERRORS" value="false" />
    <option name="FILTER_WARNINGS" value="false" />
    <option name="FILTER_INFO" value="false" />
    <option name="FILTER_DEBUG" value="false" />
    <option name="CUSTOM_FILTER" />
  </component>
  <component name="ModuleEditorState">
    <option name="LAST_EDITED_MODULE_NAME" />
    <option name="LAST_EDITED_TAB_NAME" />
  </component>
  <component name="ProjectInspectionProfilesVisibleTreeState">
    <entry key="Project Default">
      <profile-state>
        <expanded-state>
          <State>
            <id>Inspections</id>
          </State>
          <State>
            <id>Spring Model</id>
          </State>
        </expanded-state>
        <selected-state>
          <State>
            <id>AOP</id>
          </State>
        </selected-state>
      </profile-state>
    </entry>
  </component>
  <component name="ProjectLevelVcsManager">
    <OptionsSetting value="true" id="Add" />
    <OptionsSetting value="true" id="Remove" />
    <OptionsSetting value="true" id="Checkout" />
    <OptionsSetting value="true" id="Update" />
    <OptionsSetting value="true" id="Status" />
    <OptionsSetting value="true" id="Edit" />
    <ConfirmationsSetting value="0" id="Add" />
    <ConfirmationsSetting value="0" id="Remove" />
  </component>
  <component name="ProjectReloadState">
    <option name="STATE" value="0" />
  </component>
  <component name="ProjectView">
    <navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
      <flattenPackages />
      <showMembers />
      <showModules />
      <showLibraryContents />
      <hideEmptyPackages />
      <abbreviatePackageNames />
      <autoscrollToSource />
      <autoscrollFromSource />
      <sortByType />
    </navigator>
    <panes>
      <pane id="PackagesPane">
        <subPane>
          <PATH>
            <PATH_ELEMENT>
              <option name="myItemId" value="webgame" />
              <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PackageViewProjectNode" />
            </PATH_ELEMENT>
          </PATH>
        </subPane>
      </pane>
      <pane id="ProjectPane">
        <subPane>
          <PATH>
            <PATH_ELEMENT>
              <option name="myItemId" value="webgame" />
              <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
            </PATH_ELEMENT>
          </PATH>
          <PATH>
            <PATH_ELEMENT>
              <option name="myItemId" value="webgame" />
              <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
            </PATH_ELEMENT>
            <PATH_ELEMENT>
              <option name="myItemId" value="webgame" />
              <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
            </PATH_ELEMENT>
          </PATH>
          <PATH>
            <PATH_ELEMENT>
              <option name="myItemId" value="webgame" />
              <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
            </PATH_ELEMENT>
            <PATH_ELEMENT>
              <option name="myItemId" value="webgame" />
              <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
            </PATH_ELEMENT>
            <PATH_ELEMENT>
              <option name="myItemId" value="src" />
              <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
            </PATH_ELEMENT>
          </PATH>
        </subPane>
      </pane>
      <pane id="Scope" />
      <pane id="Favorites" />
    </panes>
  </component>
  <component name="PropertiesComponent">
    <property name="project.structure.last.edited" value="Modules" />
    <property name="GoToFile.includeJavaFiles" value="false" />
    <property name="project.structure.proportion" value="0.15" />
    <property name="options.splitter.main.proportions" value="0.3" />
    <property name="recentsLimit" value="5" />
    <property name="MemberChooser.sorted" value="false" />
    <property name="options.lastSelected" value="preferences.applicationServers" />
    <property name="project.structure.side.proportion" value="0.2" />
    <property name="MemberChooser.copyJavadoc" value="false" />
    <property name="GoToClass.toSaveIncludeLibraries" value="false" />
    <property name="MemberChooser.showClasses" value="true" />
    <property name="GoToClass.includeLibraries" value="false" />
    <property name="options.searchVisible" value="true" />
    <property name="options.splitter.details.proportions" value="0.2" />
  </component>
  <component name="RestoreUpdateTree">
    <UpdateInfo date="Moments ago" ActionInfo="_Update">
      <UpdatedFiles>
        <FILE-GROUP>
          <option name="myUpdateName" value="Updated from server" />
          <option name="myStatusName" value="Changed on server" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="CHANGED_ON_SERVER" />
          <FILE-GROUP>
            <option name="myUpdateName" value="Updated" />
            <option name="myStatusName" value="Changed" />
            <option name="mySupportsDeletion" value="false" />
            <option name="myCanBeAbsent" value="false" />
            <option name="myId" value="UPDATED" />
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\player\dao\ibatis\PlayerDaoImpl.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\player\dao\PlayerDao.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\player\model\Player.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\player\facade\PlayerFacade.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\player\facade\impl\PlayerFacadeImpl.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\engine\controller\EngineController.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\scene\dao\ibatis\SceneDaoImpl.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\scene\dao\SceneDao.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\scene\facade\impl\SceneFacadeImpl.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\scene\facade\SceneFacade.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\business\model\User.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\decorators.xml</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\web.xml</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\decorators\main.jsp</PATH>
          </FILE-GROUP>
          <FILE-GROUP>
            <option name="myUpdateName" value="Created" />
            <option name="myStatusName" value="Created" />
            <option name="mySupportsDeletion" value="false" />
            <option name="myCanBeAbsent" value="false" />
            <option name="myId" value="CREATED" />
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\player\factory</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\player\factory\PlayerFactory.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\src\main\org\kyll\webgame\Const.java</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\engine\main.jsp</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\business</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\business\player</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\business\scene</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\business\item</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\business\item\edit.jsp</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\business\item\list.jsp</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\business\user</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\business\user\list.jsp</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\decorators\business.jsp</PATH>
          </FILE-GROUP>
          <FILE-GROUP>
            <option name="myUpdateName" value="Deleted" />
            <option name="myStatusName" value="Deleted" />
            <option name="mySupportsDeletion" value="false" />
            <option name="myCanBeAbsent" value="true" />
            <option name="myId" value="REMOVED_FROM_REPOSITORY" />
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\engine\start.jsp</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\player</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\scene</PATH>
            <PATH vcs="svn" revision="586">E:\project\webgame\web\WEB-INF\webpage\item</PATH>
          </FILE-GROUP>
          <FILE-GROUP>
            <option name="myUpdateName" value="Restored" />
            <option name="myStatusName" value="Will be restored" />
            <option name="mySupportsDeletion" value="false" />
            <option name="myCanBeAbsent" value="false" />
            <option name="myId" value="RESTORED" />
          </FILE-GROUP>
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Modified" />
          <option name="myStatusName" value="Modified" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="MODIFIED" />
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Skipped" />
          <option name="myStatusName" value="Skipped" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="SKIPPED" />
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Merged with conflicts" />
          <option name="myStatusName" value="Will be merged with conflicts" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="MERGED_WITH_CONFLICTS" />
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Merged with tree conflicts" />
          <option name="myStatusName" value="Merged with tree conflicts" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="MERGED_WITH_TREE_CONFLICT" />
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Merged" />
          <option name="myStatusName" value="Will be merged" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="MERGED" />
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Not in repository" />
          <option name="myStatusName" value="Not in repository" />
          <option name="mySupportsDeletion" value="true" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="UNKNOWN" />
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Locally added" />
          <option name="myStatusName" value="Locally added" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="LOCALLY_ADDED" />
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Locally removed" />
          <option name="myStatusName" value="Locally removed" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="LOCALLY_REMOVED" />
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Switched" />
          <option name="myStatusName" value="Switched" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="SWITCHED" />
        </FILE-GROUP>
        <FILE-GROUP>
          <option name="myUpdateName" value="Merged with property conflicts" />
          <option name="myStatusName" value="Will be merged with property conflicts" />
          <option name="mySupportsDeletion" value="false" />
          <option name="myCanBeAbsent" value="false" />
          <option name="myId" value="MERGED_WITH_PROPERTY_CONFLICT" />
        </FILE-GROUP>
      </UpdatedFiles>
    </UpdateInfo>
  </component>
  <component name="RunManager" selected="Tomcat Server.webgame">
    <configuration default="true" type="Remote" factoryName="Remote">
      <option name="USE_SOCKET_TRANSPORT" value="true" />
      <option name="SERVER_MODE" value="false" />
      <option name="SHMEM_ADDRESS" value="javadebug" />
      <option name="HOST" value="localhost" />
      <option name="PORT" value="5005" />
      <method>
        <option name="BuildArtifacts" enabled="false" />
      </method>
    </configuration>
    <configuration default="true" type="Applet" factoryName="Applet">
      <module name="" />
      <option name="MAIN_CLASS_NAME" />
      <option name="HTML_FILE_NAME" />
      <option name="HTML_USED" value="false" />
      <option name="WIDTH" value="400" />
      <option name="HEIGHT" value="300" />
      <option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
      <option name="VM_PARAMETERS" />
      <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
      <option name="ALTERNATIVE_JRE_PATH" />
      <method>
        <option name="BuildArtifacts" enabled="false" />
        <option name="Make" enabled="true" />
      </method>
    </configuration>
    <configuration default="true" type="Application" factoryName="Application">
      <option name="MAIN_CLASS_NAME" />
      <option name="VM_PARAMETERS" />
      <option name="PROGRAM_PARAMETERS" />
      <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
      <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
      <option name="ALTERNATIVE_JRE_PATH" />
      <option name="ENABLE_SWING_INSPECTOR" value="false" />
      <option name="ENV_VARIABLES" />
      <option name="PASS_PARENT_ENVS" value="true" />
      <module name="" />
      <envs />
      <method>
        <option name="BuildArtifacts" enabled="false" />
        <option name="Make" enabled="true" />
      </method>
    </configuration>
    <configuration default="true" type="#com.intellij.j2ee.web.tomcat.TomcatRunConfigurationFactory" factoryName="Local">
      <deployment />
      <server-settings>
        <option name="DEPLOY_TOMCAT_APPS" value="false" />
        <option name="BASE_DIRECTORY_NAME" value="" />
      </server-settings>
      <predefined_log_file id="TOMCAT_LOCALHOST_LOG_ID" enabled="true" />
      <method>
        <option name="BuildArtifacts" enabled="false" />
        <option name="Make" enabled="true" />
      </method>
    </configuration>
    <configuration default="false" name="webgame" type="#com.intellij.j2ee.web.tomcat.TomcatRunConfigurationFactory" factoryName="Local" APPLICATION_SERVER_NAME="Tomcat 6.0.20">
      <option name="OPEN_IN_BROWSER" value="false" />
      <option name="OPEN_IN_BROWSER_URL" value="http://localhost:8080/webgame/" />
      <deployment>
        <artifact name="webgame:war exploded">
          <settings>
            <option name="CONTEXT_PATH" value="/webgame" />
          </settings>
        </artifact>
      </deployment>
      <server-settings>
        <option name="DEPLOY_TOMCAT_APPS" value="false" />
        <option name="BASE_DIRECTORY_NAME" value="Tomcat_6_webgame" />
      </server-settings>
      <predefined_log_file id="TOMCAT_LOCALHOST_LOG_ID" enabled="true" />
      <RunnerSettings RunnerId="Debug">
        <option name="DEBUG_PORT" value="3950" />
        <option name="TRANSPORT" value="0" />
        <option name="LOCAL" value="true" />
      </RunnerSettings>
      <RunnerSettings RunnerId="Run" />
      <ConfigurationWrapper VM_VAR="JAVA_OPTS" RunnerId="Debug">
        <option name="USE_ENV_VARIABLES" value="true" />
        <STARTUP>
          <option name="USE_DEFAULT" value="true" />
          <option name="SCRIPT" value="E:/java/apache-tomcat-6.0.24/bin/catalina.bat" />
          <option name="VM_PARAMETERS" value="" />
          <option name="PROGRAM_PARAMETERS" value=" run" />
        </STARTUP>
        <SHUTDOWN>
          <option name="USE_DEFAULT" value="true" />
          <option name="SCRIPT" value="E:/java/apache-tomcat-6.0.24/bin/catalina.bat" />
          <option name="VM_PARAMETERS" value="" />
          <option name="PROGRAM_PARAMETERS" value=" stop" />
        </SHUTDOWN>
      </ConfigurationWrapper>
      <ConfigurationWrapper VM_VAR="JAVA_OPTS" RunnerId="Run">
        <option name="USE_ENV_VARIABLES" value="true" />
        <STARTUP>
          <option name="USE_DEFAULT" value="true" />
          <option name="SCRIPT" value="E:/java/apache-tomcat-6.0.24/bin/catalina.bat" />
          <option name="VM_PARAMETERS" value="" />
          <option name="PROGRAM_PARAMETERS" value=" run" />
        </STARTUP>
        <SHUTDOWN>
          <option name="USE_DEFAULT" value="true" />
          <option name="SCRIPT" value="E:/java/apache-tomcat-6.0.24/bin/catalina.bat" />
          <option name="VM_PARAMETERS" value="" />
          <option name="PROGRAM_PARAMETERS" value=" stop" />
        </SHUTDOWN>
      </ConfigurationWrapper>
      <method>
        <option name="BuildArtifacts" enabled="true">
          <artifact name="webgame:war exploded" />
        </option>
      </method>
    </configuration>
    <list size="1">
      <item index="0" class="java.lang.String" itemvalue="Tomcat Server.webgame" />
    </list>
    <configuration name="&lt;template&gt;" type="JUnit" default="true" selected="false">
      <option name="MAIN_CLASS_NAME" />
      <option name="VM_PARAMETERS" />
      <option name="PARAMETERS" />
      <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
    </configuration>
    <configuration name="&lt;template&gt;" type="WebApp" default="true" selected="false">
      <Host>localhost</Host>
      <Port>5050</Port>
    </configuration>
  </component>
  <component name="ShelveChangesManager" show_recycled="false" />
  <component name="SvnConfiguration" maxAnnotateRevisions="500">
    <option name="USER" value="" />
    <option name="PASSWORD" value="" />
    <option name="LAST_MERGED_REVISION" />
    <option name="UPDATE_RUN_STATUS" value="false" />
    <option name="MERGE_DRY_RUN" value="false" />
    <option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
    <option name="UPDATE_LOCK_ON_DEMAND" value="false" />
    <option name="IGNORE_SPACES_IN_MERGE" value="false" />
    <option name="DETECT_NESTED_COPIES" value="true" />
    <option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
    <option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
    <option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
    <configuration useDefault="false">C:\Documents and Settings\Administrator\Application Data\Subversion</configuration>
    <myIsUseDefaultProxy>false</myIsUseDefaultProxy>
    <supportedVersion>125</supportedVersion>
  </component>
  <component name="SvnFileUrlMappingImpl">
    <option name="myMappingRoots">
      <list>
        <SvnCopyRootSimple>
          <option name="myVcsRoot" value="E:\project\webgame" />
          <option name="myCopyRoot" value="E:\project\webgame" />
        </SvnCopyRootSimple>
      </list>
    </option>
    <option name="myMoreRealMappingRoots">
      <list>
        <SvnCopyRootSimple>
          <option name="myVcsRoot" value="E:\project\webgame" />
          <option name="myCopyRoot" value="E:\project\webgame" />
        </SvnCopyRootSimple>
      </list>
    </option>
  </component>
  <component name="ToolWindowManager">
    <frame x="-4" y="-4" width="1374" height="748" extended-state="0" />
    <editor active="false" />
    <layout>
      <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
      <window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
      <window_info id="Palette" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
      <window_info id="Web" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.24981357" sideWeight="0.39490446" order="2" side_tool="true" content_ui="tabs" />
      <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
      <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.24981357" sideWeight="0.40286624" order="1" side_tool="true" content_ui="tabs" />
      <window_info id="Dependency Viewer" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
      <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24981357" sideWeight="0.6003185" order="0" side_tool="false" content_ui="tabs" />
      <window_info id="Debug" active="true" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.39968154" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
      <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
      <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32961783" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
      <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
      <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
      <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
      <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
      <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
      <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
      <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
    </layout>
  </component>
  <component name="VcsManagerConfiguration">
    <option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
    <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
    <option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
    <option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
    <option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
    <option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
    <option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
    <option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
    <option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
    <option name="ENABLE_BACKGROUND_PROCESSES" value="false" />
    <option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
    <option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
    <option name="FORCE_NON_EMPTY_COMMENT" value="false" />
    <option name="LAST_COMMIT_MESSAGE" value="" />
    <option name="MAKE_NEW_CHANGELIST_ACTIVE" value="true" />
    <option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
    <option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
    <option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
    <option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
    <option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
    <option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
    <option name="ACTIVE_VCS_NAME" />
    <option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
    <option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
    <option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
    <option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
  </component>
  <component name="XDebuggerManager">
    <breakpoint-manager />
  </component>
  <component name="editorHistoryManager">
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/item/controller/ItemController.java">
      <provider selected="true" editor-type-id="text-editor">
        <state line="11" column="0" selection-start="293" selection-end="293" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/player/controller/PlayerController.java">
      <provider selected="true" editor-type-id="text-editor">
        <state line="7" column="13" selection-start="236" selection-end="236" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/scene/controller/SceneController.java">
      <provider selected="true" editor-type-id="text-editor">
        <state line="7" column="13" selection-start="233" selection-end="233" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/scene/facade/impl/SceneFacadeImpl.java">
      <provider selected="true" editor-type-id="text-editor">
        <state line="8" column="13" selection-start="272" selection-end="272" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/scene/dao/ibatis/SceneDaoImpl.java">
      <provider selected="true" editor-type-id="text-editor">
        <state line="7" column="13" selection-start="207" selection-end="207" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/item/dao/ibatis/sqlmap/Item.xml">
      <provider selected="true" editor-type-id="text-editor">
        <state line="6" column="0" selection-start="0" selection-end="194" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/engine/controller/EngineController.java">
      <provider selected="true" editor-type-id="text-editor">
        <state line="35" column="44" selection-start="1267" selection-end="1267" vertical-scroll-proportion="0.0">
          <folding />
        </state>
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/engine/facade/EngineFacade.java">
      <provider selected="true" editor-type-id="text-editor">
        <state line="2" column="17" selection-start="58" selection-end="58" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/engine/facade/impl/EngineFacadeImpl.java">
      <provider selected="true" editor-type-id="text-editor">
        <state line="6" column="13" selection-start="168" selection-end="168" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/config/sqlmap-config.xml">
      <provider selected="true" editor-type-id="text-editor">
        <state line="21" column="73" selection-start="712" selection-end="712" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/player/dao/ibatis/sqlmap/Player.xml">
      <provider selected="true" editor-type-id="text-editor">
        <state line="5" column="25" selection-start="182" selection-end="182" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/main/org/kyll/webgame/scene/dao/ibatis/sqlmap/Scene.xml">
      <provider selected="true" editor-type-id="text-editor">
        <state line="5" column="24" selection-start="181" selection-end="181" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/web/index.jsp">
      <provider selected="true" editor-type-id="text-editor">
        <state line="6" column="26" selection-start="116" selection-end="116" vertical-scroll-proportion="0.0" />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/web/WEB-INF/spring-servlet.xml">
      <provider selected="true" editor-type-id="text-editor">
        <state line="8" column="0" selection-start="593" selection-end="593" vertical-scroll-proportion="0.0" />
      </provider>
      <provider editor-type-id="com.intellij.spring.perspectives.SpringBeansStructureEditorProvider">
        <state />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/web/WEB-INF/spring-context.xml">
      <provider selected="true" editor-type-id="text-editor">
        <state line="27" column="49" selection-start="1621" selection-end="1621" vertical-scroll-proportion="0.0">
          <folding>
            <element signature="tag#prop#0;tag#props#0;tag#property#2;tag#bean#0;tag#beans#0" expanded="true" />
            <element signature="tag#prop#1;tag#props#0;tag#property#2;tag#bean#0;tag#beans#0" expanded="true" />
            <element signature="tag#prop#2;tag#props#0;tag#property#2;tag#bean#0;tag#beans#0" expanded="true" />
          </folding>
        </state>
      </provider>
      <provider editor-type-id="com.intellij.spring.perspectives.SpringBeansStructureEditorProvider">
        <state />
      </provider>
    </entry>
    <entry file="file://$PROJECT_DIR$/src/config/jdbc.properties">
      <provider selected="true" editor-type-id="text-editor">
        <state line="4" column="0" selection-start="159" selection-end="159" vertical-scroll-proportion="0.2060606">
          <folding />
        </state>
      </provider>
    </entry>
  </component>
  <component name="masterDetails">
    <states>
      <state key="ArtifactsStructureConfigurable.UI">
        <settings>
          <artifact-editor />
          <last-edited>webgame:war exploded</last-edited>
          <splitter-proportions>
            <option name="proportions">
              <list>
                <option value="0.2" />
                <option value="0.5" />
              </list>
            </option>
          </splitter-proportions>
        </settings>
      </state>
      <state key="FacetStructureConfigurable.UI">
        <settings>
          <last-edited>EJB</last-edited>
          <splitter-proportions>
            <option name="proportions">
              <list>
                <option value="0.2" />
              </list>
            </option>
          </splitter-proportions>
        </settings>
      </state>
      <state key="GlobalLibrariesConfigurable.UI">
        <settings>
          <splitter-proportions>
            <option name="proportions">
              <list>
                <option value="0.2" />
              </list>
            </option>
          </splitter-proportions>
        </settings>
      </state>
      <state key="JdkListConfigurable.UI">
        <settings>
          <last-edited>1.6</last-edited>
          <splitter-proportions>
            <option name="proportions">
              <list>
                <option value="0.2" />
              </list>
            </option>
          </splitter-proportions>
        </settings>
      </state>
      <state key="ModuleStructureConfigurable.UI">
        <settings>
          <last-edited>Spring|webgame</last-edited>
          <splitter-proportions>
            <option name="proportions">
              <list>
                <option value="0.2" />
              </list>
            </option>
          </splitter-proportions>
        </settings>
      </state>
      <state key="ProjectLibrariesConfigurable.UI">
        <settings>
          <last-edited>lib</last-edited>
          <splitter-proportions>
            <option name="proportions">
              <list>
                <option value="0.2" />
              </list>
            </option>
          </splitter-proportions>
        </settings>
      </state>
    </states>
  </component>
</project>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics