Hello Spring

main
2506980119周云璁 5 days ago
parent 3e51b1887d
commit 406af2e3cb

10
.idea/.gitignore vendored

@ -0,0 +1,10 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

@ -0,0 +1,26 @@
<component name="libraryTable">
<library name="lib">
<CLASSES>
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/spring-core-5.1.6.RELEASE.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/spring-expression-5.1.6.RELEASE.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/spring-webmvc-5.1.6.RELEASE.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/mybatis-3.5.0.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/spring-aop-5.1.6.RELEASE.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/spring-context-5.1.6.RELEASE.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/mybatis-spring-2.0.3.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/spring-jdbc-5.1.6.RELEASE.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/spring-web-5.1.6.RELEASE.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/spring-beans-5.1.6.RELEASE.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/commons-pool2-2.7.0.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/spring-tx-5.1.6.RELEASE.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/commons-dbcp2-2.5.0.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/commons-fileupload-1.3.1.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/commons-logging-1.1.1.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/commons-io-2.5.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/jstl-1.2.jar!/" />
<root url="jar://$PROJECT_DIR$/equipment/web/WEB-INF/lib/mysql-connector-java-8.0.11.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

@ -0,0 +1,10 @@
<component name="libraryTable">
<library name="lib (2)">
<CLASSES>
<root url="file://$PROJECT_DIR$/equipment-SpringProject/src/lib" />
</CLASSES>
<JAVADOC />
<SOURCES />
<jarDirectory url="file://$PROJECT_DIR$/equipment-SpringProject/src/lib" recursive="false" />
</library>
</component>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/LabMS25-12A.iml" filepath="$PROJECT_DIR$/.idea/LabMS25-12A.iml" />
<module fileurl="file://$PROJECT_DIR$/equipment/equipment.iml" filepath="$PROJECT_DIR$/equipment/equipment.iml" />
<module fileurl="file://$PROJECT_DIR$/equipment-MyBatisProject/equipment-MyBatisProject.iml" filepath="$PROJECT_DIR$/equipment-MyBatisProject/equipment-MyBatisProject.iml" />
<module fileurl="file://$PROJECT_DIR$/equipment-SpringMVCProject/equipment-SpringMVCProject.iml" filepath="$PROJECT_DIR$/equipment-SpringMVCProject/equipment-SpringMVCProject.iml" />
<module fileurl="file://$PROJECT_DIR$/equipment-SpringProject/equipment-SpringProject.iml" filepath="$PROJECT_DIR$/equipment-SpringProject/equipment-SpringProject.iml" />
</modules>
</component>
</project>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 这个类是真实存在的! -->
<bean id="user" class="com.ssm.first.User">
<property name="name" value="Hello Spring"/>
</bean>
</beans>
Loading…
Cancel
Save