workspace.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project version="4">
  3. <component name="ArtifactsWorkspaceSettings">
  4. <artifacts-to-build>
  5. <artifact name="springmvc-demo:war" />
  6. <artifact name="springmvc-demo:war exploded" />
  7. </artifacts-to-build>
  8. </component>
  9. <component name="AutoImportSettings">
  10. <option name="autoReloadType" value="SELECTIVE" />
  11. </component>
  12. <component name="ChangeListManager">
  13. <list default="true" id="d55c211f-cca4-4230-b149-ae8c1dab3c43" name="Changes" comment="0117 springmvc">
  14. <change afterPath="$PROJECT_DIR$/../.idea/VIPJAVA.iml" afterDir="false" />
  15. <change afterPath="$PROJECT_DIR$/../gn_oa_vip27/.idea/google-java-format.xml" afterDir="false" />
  16. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/controller/HelloController.java" afterDir="false" />
  17. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/dao/AuthorDao.java" afterDir="false" />
  18. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/dao/BookDao.java" afterDir="false" />
  19. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/dao/TypeDao.java" afterDir="false" />
  20. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/entity/Author.java" afterDir="false" />
  21. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/entity/Book.java" afterDir="false" />
  22. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/entity/Type.java" afterDir="false" />
  23. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/service/AuthorService.java" afterDir="false" />
  24. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/service/BookService.java" afterDir="false" />
  25. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/service/impl/AuthorServiceImpl.java" afterDir="false" />
  26. <change afterPath="$PROJECT_DIR$/src/main/java/com/sf/service/impl/BookServiceImpl.java" afterDir="false" />
  27. <change afterPath="$PROJECT_DIR$/src/main/resources/db.properties" afterDir="false" />
  28. <change afterPath="$PROJECT_DIR$/src/main/resources/mapper/authorMapper.xml" afterDir="false" />
  29. <change afterPath="$PROJECT_DIR$/src/main/resources/mapper/bookMapper.xml" afterDir="false" />
  30. <change afterPath="$PROJECT_DIR$/src/main/resources/mapper/typeMapper.xml" afterDir="false" />
  31. <change afterPath="$PROJECT_DIR$/src/main/resources/mybatis-config.xml" afterDir="false" />
  32. <change afterPath="$PROJECT_DIR$/src/main/resources/spring.xml" afterDir="false" />
  33. <change beforePath="$PROJECT_DIR$/../02_JavaWeb/day06_mybatis/src/main/java/com/lc/mapper/UserMapper.java" beforeDir="false" afterPath="$PROJECT_DIR$/../02_JavaWeb/day06_mybatis/src/main/java/com/lc/mapper/UserMapper.java" afterDir="false" />
  34. <change beforePath="$PROJECT_DIR$/../02_JavaWeb/day06_mybatis/src/main/resources/com/lc/mapper/UserMapper.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../02_JavaWeb/day06_mybatis/src/main/resources/com/lc/mapper/UserMapper.xml" afterDir="false" />
  35. <change beforePath="$PROJECT_DIR$/../gn_oa_vip27/.idea/jarRepositories.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../gn_oa_vip27/.idea/jarRepositories.xml" afterDir="false" />
  36. <change beforePath="$PROJECT_DIR$/../gn_oa_vip27/.idea/misc.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../gn_oa_vip27/.idea/misc.xml" afterDir="false" />
  37. <change beforePath="$PROJECT_DIR$/../gn_oa_vip27/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../gn_oa_vip27/.idea/workspace.xml" afterDir="false" />
  38. <change beforePath="$PROJECT_DIR$/../gn_oa_vip27/src/main/java/com/sf/utils/JdbcUtil.java" beforeDir="false" afterPath="$PROJECT_DIR$/../gn_oa_vip27/src/main/java/com/sf/utils/JdbcUtil.java" afterDir="false" />
  39. <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
  40. <change beforePath="$PROJECT_DIR$/pom.xml" beforeDir="false" afterPath="$PROJECT_DIR$/pom.xml" afterDir="false" />
  41. <change beforePath="$PROJECT_DIR$/src/main/java/com/sf/MyServletContainerInitializer.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/sf/anno/MyServletContainerInitializer.java" afterDir="false" />
  42. <change beforePath="$PROJECT_DIR$/src/main/java/com/sf/MyWebAppInitializer.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/sf/anno/MyWebAppInitializer.java" afterDir="false" />
  43. <change beforePath="$PROJECT_DIR$/src/main/java/com/sf/SpringMvcConfig.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/sf/anno/SpringMvcConfig.java" afterDir="false" />
  44. <change beforePath="$PROJECT_DIR$/src/main/java/com/sf/controller/AuthorController.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/sf/controller/AuthorController.java" afterDir="false" />
  45. <change beforePath="$PROJECT_DIR$/src/main/java/com/sf/controller/BookController.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/sf/controller/BookController.java" afterDir="false" />
  46. <change beforePath="$PROJECT_DIR$/src/main/webapp/WEB-INF/web.xml" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/webapp/WEB-INF/web.xml" afterDir="false" />
  47. </list>
  48. <option name="SHOW_DIALOG" value="false" />
  49. <option name="HIGHLIGHT_CONFLICTS" value="true" />
  50. <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
  51. <option name="LAST_RESOLUTION" value="IGNORE" />
  52. </component>
  53. <component name="ChangesViewManager">
  54. <option name="groupingKeys">
  55. <option value="directory" />
  56. </option>
  57. </component>
  58. <component name="FileTemplateManagerImpl">
  59. <option name="RECENT_TEMPLATES">
  60. <list>
  61. <option value="Jsp File" />
  62. <option value="Spring Xml File" />
  63. <option value="Interface" />
  64. <option value="Class" />
  65. <option value="Mybatis Mapper Xml File" />
  66. </list>
  67. </option>
  68. </component>
  69. <component name="Git.Settings">
  70. <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/.." />
  71. </component>
  72. <component name="KubernetesApiProvider">{
  73. &quot;isMigrated&quot;: true
  74. }</component>
  75. <component name="LogFilters">
  76. <option name="FILTER_ERRORS" value="false" />
  77. <option name="FILTER_WARNINGS" value="false" />
  78. <option name="FILTER_INFO" value="true" />
  79. <option name="FILTER_DEBUG" value="true" />
  80. <option name="CUSTOM_FILTER" />
  81. </component>
  82. <component name="ProjectColorInfo">{
  83. &quot;associatedIndex&quot;: 4
  84. }</component>
  85. <component name="ProjectId" id="2b4QX4DZlPMWbRpeUw2AqyNi4lV" />
  86. <component name="ProjectLevelVcsManager">
  87. <ConfirmationsSetting value="2" id="Add" />
  88. </component>
  89. <component name="ProjectViewState">
  90. <option name="showLibraryContents" value="true" />
  91. </component>
  92. <component name="PropertiesComponent"><![CDATA[{
  93. "keyToString": {
  94. "Maven. [org.apache.maven.plugins:maven-archetype-plugin:RELEASE:generate].executor": "Run",
  95. "RunOnceActivity.OpenProjectViewOnStart": "true",
  96. "RunOnceActivity.ShowReadmeOnStart": "true",
  97. "Tomcat Server.Tomcat 10.0.21.executor": "Run",
  98. "Tomcat Server.Tomcat 8.5.93.executor": "Run",
  99. "git-widget-placeholder": "master",
  100. "kotlin-language-version-configured": "true",
  101. "last_opened_file_path": "/Users/Qing/IdeaProjects/SiFu/VIPJAVA/springmvc-demo/src/main/java/com/sf",
  102. "node.js.detected.package.eslint": "true",
  103. "node.js.detected.package.tslint": "true",
  104. "node.js.selected.package.eslint": "(autodetect)",
  105. "node.js.selected.package.tslint": "(autodetect)",
  106. "nodejs_package_manager_path": "npm",
  107. "project.structure.last.edited": "Project",
  108. "project.structure.proportion": "0.17833698",
  109. "project.structure.side.proportion": "0.0",
  110. "settings.editor.selected.configurable": "preferences.externalResources",
  111. "vue.rearranger.settings.migration": "true"
  112. }
  113. }]]></component>
  114. <component name="RecentsManager">
  115. <key name="CopyFile.RECENT_KEYS">
  116. <recent name="$PROJECT_DIR$/src/main/java/com/sf" />
  117. <recent name="$PROJECT_DIR$/src/main/resources" />
  118. <recent name="$PROJECT_DIR$/src/main/webapp/WEB-INF" />
  119. </key>
  120. <key name="MoveFile.RECENT_KEYS">
  121. <recent name="$PROJECT_DIR$/src/main/java/com/sf/anno" />
  122. </key>
  123. </component>
  124. <component name="RunManager">
  125. <configuration name="Tomcat 10.0.21" type="#com.intellij.j2ee.web.tomcat.TomcatRunConfigurationFactory" factoryName="Local" APPLICATION_SERVER_NAME="Tomcat 10.0.21" ALTERNATIVE_JRE_ENABLED="false" nameIsGenerated="true">
  126. <option name="OPEN_IN_BROWSER_URL" value="http://localhost:8080/springmvc_demo/hello" />
  127. <option name="UPDATING_POLICY" value="restart-server" />
  128. <deployment>
  129. <artifact name="springmvc-demo:war">
  130. <settings>
  131. <option name="CONTEXT_PATH" value="/springmvc_demo_war" />
  132. </settings>
  133. </artifact>
  134. <artifact name="springmvc-demo:war exploded">
  135. <settings>
  136. <option name="CONTEXT_PATH" value="/springmvc_demo" />
  137. </settings>
  138. </artifact>
  139. </deployment>
  140. <server-settings>
  141. <option name="BASE_DIRECTORY_NAME" value="35ace8a8-cdaa-4cb1-aa16-948e91024d18" />
  142. </server-settings>
  143. <predefined_log_file enabled="true" id="Tomcat" />
  144. <predefined_log_file enabled="true" id="Tomcat Catalina" />
  145. <predefined_log_file id="Tomcat Manager" />
  146. <predefined_log_file id="Tomcat Host Manager" />
  147. <predefined_log_file id="Tomcat Localhost Access" />
  148. <RunnerSettings RunnerId="Debug">
  149. <option name="DEBUG_PORT" value="56558" />
  150. </RunnerSettings>
  151. <ConfigurationWrapper VM_VAR="JAVA_OPTS" RunnerId="Cover">
  152. <option name="USE_ENV_VARIABLES" value="true" />
  153. <STARTUP>
  154. <option name="USE_DEFAULT" value="true" />
  155. <option name="SCRIPT" value="" />
  156. <option name="VM_PARAMETERS" value="" />
  157. <option name="PROGRAM_PARAMETERS" value="" />
  158. </STARTUP>
  159. <SHUTDOWN>
  160. <option name="USE_DEFAULT" value="true" />
  161. <option name="SCRIPT" value="" />
  162. <option name="VM_PARAMETERS" value="" />
  163. <option name="PROGRAM_PARAMETERS" value="" />
  164. </SHUTDOWN>
  165. </ConfigurationWrapper>
  166. <ConfigurationWrapper VM_VAR="JAVA_OPTS" RunnerId="Debug">
  167. <option name="USE_ENV_VARIABLES" value="true" />
  168. <STARTUP>
  169. <option name="USE_DEFAULT" value="true" />
  170. <option name="SCRIPT" value="" />
  171. <option name="VM_PARAMETERS" value="" />
  172. <option name="PROGRAM_PARAMETERS" value="" />
  173. </STARTUP>
  174. <SHUTDOWN>
  175. <option name="USE_DEFAULT" value="true" />
  176. <option name="SCRIPT" value="" />
  177. <option name="VM_PARAMETERS" value="" />
  178. <option name="PROGRAM_PARAMETERS" value="" />
  179. </SHUTDOWN>
  180. </ConfigurationWrapper>
  181. <ConfigurationWrapper VM_VAR="JAVA_OPTS" RunnerId="Profile">
  182. <option name="USE_ENV_VARIABLES" value="true" />
  183. <STARTUP>
  184. <option name="USE_DEFAULT" value="true" />
  185. <option name="SCRIPT" value="" />
  186. <option name="VM_PARAMETERS" value="" />
  187. <option name="PROGRAM_PARAMETERS" value="" />
  188. </STARTUP>
  189. <SHUTDOWN>
  190. <option name="USE_DEFAULT" value="true" />
  191. <option name="SCRIPT" value="" />
  192. <option name="VM_PARAMETERS" value="" />
  193. <option name="PROGRAM_PARAMETERS" value="" />
  194. </SHUTDOWN>
  195. </ConfigurationWrapper>
  196. <ConfigurationWrapper VM_VAR="JAVA_OPTS" RunnerId="Run">
  197. <option name="USE_ENV_VARIABLES" value="true" />
  198. <STARTUP>
  199. <option name="USE_DEFAULT" value="true" />
  200. <option name="SCRIPT" value="" />
  201. <option name="VM_PARAMETERS" value="" />
  202. <option name="PROGRAM_PARAMETERS" value="" />
  203. </STARTUP>
  204. <SHUTDOWN>
  205. <option name="USE_DEFAULT" value="true" />
  206. <option name="SCRIPT" value="" />
  207. <option name="VM_PARAMETERS" value="" />
  208. <option name="PROGRAM_PARAMETERS" value="" />
  209. </SHUTDOWN>
  210. </ConfigurationWrapper>
  211. <method v="2">
  212. <option name="Make" enabled="true" />
  213. <option name="BuildArtifacts" enabled="true">
  214. <artifact name="springmvc-demo:war exploded" />
  215. <artifact name="springmvc-demo:war" />
  216. </option>
  217. </method>
  218. </configuration>
  219. </component>
  220. <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
  221. <component name="TaskManager">
  222. <task active="true" id="Default" summary="Default task">
  223. <changelist id="d55c211f-cca4-4230-b149-ae8c1dab3c43" name="Changes" comment="" />
  224. <created>1705471907664</created>
  225. <option name="number" value="Default" />
  226. <option name="presentableId" value="Default" />
  227. <updated>1705471907664</updated>
  228. <workItem from="1705471908780" duration="12452000" />
  229. <workItem from="1705492873471" duration="6116000" />
  230. </task>
  231. <task id="LOCAL-00001" summary="0117 springmvc">
  232. <option name="closed" value="true" />
  233. <created>1705481868228</created>
  234. <option name="number" value="00001" />
  235. <option name="presentableId" value="LOCAL-00001" />
  236. <option name="project" value="LOCAL" />
  237. <updated>1705481868228</updated>
  238. </task>
  239. <option name="localTasksCounter" value="2" />
  240. <servers />
  241. </component>
  242. <component name="TypeScriptGeneratedFilesManager">
  243. <option name="version" value="3" />
  244. </component>
  245. <component name="VcsManagerConfiguration">
  246. <MESSAGE value="0117 springmvc" />
  247. <option name="LAST_COMMIT_MESSAGE" value="0117 springmvc" />
  248. </component>
  249. <component name="XSLT-Support.FileAssociations.UIState">
  250. <expand />
  251. <select />
  252. </component>
  253. </project>