如何配置ssm項目路徑
發布時間: 2024-11-05 06:49:54
A. java-SSM框架怎麼配置啊
SSM現在是比較常用的框架有ssm,既是SpringMVC、Spring及MyBatis
1、確定需要集成版本,以mybatis-3.2.1、spring-framework-3.2.0.RELEASE為例
2、Spring3.2先和MyBatis3.2集成
3、創建web動態工程:注意classpath路徑
4、添加Spring3.2+MyBatis3.2 mysql驅動共計30個jar文件
18個spring相關的jar文件
MyBatis3.2 版本共9個jar文件
包含mysql驅動共28個jar文件
jstl 2個jar 文件共計30個jar文件
jdbc.properties
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql:///ssm
jdbc.username=root
jdbc.password=admin
log4j.properties
5、寫配置文件的流程:
資料庫連接配置文件->DataSource->SqlSessionFactory->Mapper->Service->Controller
spring配置文件
UserMapper
也可以在介面裡面定義主鍵的MyBatis映射
UserMapper.xml
UserServiceImpl
Spring3.2+SpringMVC3.2
spring配置文件
web.xml
UserController
webapp/WEB-INF/views/user.jsp
至此,集成完成,在此基礎上可再添加其他功能。每步都要截圖太麻煩了我就不上圖了。
熱點內容