SSM框架-Intellij IDEA
最近在搞一個SSM框架的基礎工程,看到了一篇很詳細的部落格(部落格地址)。但是他是基於Eclipse搭建的,在idea中執行異常,查閱資料修復後,分享給大家。
修改了什麼?
pom.xml
編譯時候需包含mybatis的xml檔案
<build>
<finalName>ssm</finalName>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
</build>
增加jackson-core-asl、jackson-core和jackson-databind
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>1.9.13</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.13</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.5.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.5.1</version>
</dependency>
spring-mvc.xml
mappingJacksonHttpMessageConverter修改為MappingJackson2HttpMessageConverter
<!--<bean id="mappingJacksonHttpMessageConverter"-->
<!--class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">-->
<bean id="mappingJacksonHttpMessageConverter"
class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/html;charset=UTF-8</value>
</list>
</property>
</bean>
AnnotationMethodHandlerAdapter修改為RequestMappingHandlerAdapter
<!--<bean-->
<!--class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">-->
<bean
class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"
p:ignoreDefaultModelOnRedirect="true">
<property name="messageConverters">
<list>
<ref bean="mappingJacksonHttpMessageConverter" /> <!-- JSON轉換器 -->
</list>
</property>
</bean>
增加annotation-driven
<mvc:annotation-driven />
如何使用本文Demo?
建立一個表
CREATE TABLE `sys`.`user_t` (
`id` INT NOT NULL,
`user_name` VARCHAR(45) NULL,
`password` VARCHAR(45) NULL,
`age` INT(4) NULL,
PRIMARY KEY (`id`));
修改你的資料庫連線
#jdbc.properties
driver=com.mysql.jdbc.Driver
#需要修改資料庫地址
url=jdbc:mysql://localhost:3306/sys
#需要修改資料庫賬戶名
username=root
#需要修改資料庫密碼
password=root
#定義初始連線數
initialSize=0
#定義最大連線數
maxActive=20
#定義最大空閒
maxIdle=20
#定義最小空閒
minIdle=1
#定義最長等待時間
maxWait=60000
示例程式碼下載
相關文章
- 用IDEA搭建SSM框架IdeaSSM框架
- 【IntelliJ IDEA】IntelliJIdea
- IntelliJ IDEA 2022.1.4IntelliJIdea
- IntelliJ IDEA快捷鍵IntelliJIdea
- IntelliJ IDEA 配置代理IntelliJIdea
- IntelliJ IDEA 破解教程IntelliJIdea
- IntelliJ IDEA配置JDKIntelliJIdeaJDK
- IntelliJ IDEA 2020.1官方IntelliJIdea
- SSM框架SSM框架
- [轉載]使用IntelliJ IDEA開發SpringMVC網站(二)框架配置IntelliJIdeaSpringMVC網站框架
- Java開發工具IntelliJ IDEA 2022(idea)JavaIntelliJIdea
- IntelliJ IDEA 啟用(最新)IntelliJIdea
- IntelliJ IDEA 2019.1 新特性IntelliJIdea
- IntelliJ IDEA常用快捷鍵IntelliJIdea
- Intellij IDEA 中 使用 GitIntelliJIdeaGit
- IntelliJ IDEA下.gitignore配置IntelliJIdeaGit
- 【IntelliJ IDEA】2024最新使用IntelliJIdea
- IntelliJ IDEA 中的技巧IntelliJIdea
- IntelliJ IDEA 2023 for Mac破解版 IntelliJ IDEA 2023完整破解安裝教程IntelliJIdeaMac
- ssm框架理解SSM框架
- SSM框架整合SSM框架
- 整合SSM框架SSM框架
- IntelliJ IDEA 2023 for Mac完美啟用版 IntelliJ IDEA 2023最新註冊碼分享IntelliJIdeaMac
- IntelliJ IDEA 2023 mac主要更新了什麼?IntelliJ IDEA 新版 UI 更新盤點IntelliJIdeaMacUI
- IntelliJ IDEA安裝和破解IntelliJIdea
- 詳解Intellij IDEA搭建SpringBootIntelliJIdeaSpring Boot
- IntelliJ IDEA 共享 IDE 設定IntelliJIdea
- Java效率工具之Intellij IDEAJavaIntelliJIdea
- IntelliJ IDEA 2018.2 for Mac/Win破解IntelliJIdeaMac
- 在Intellij IDEA中使用DebugIntelliJIdea
- Intellij IDEA開發Scala程式IntelliJIdea
- IntelliJ IDEA新建JSP檔案IntelliJIdeaJS
- IntelliJ Idea優秀外掛IntelliJIdea
- IntelliJ idea 常用快捷鍵(Windows)IntelliJIdeaWindows
- SSM框架的整合SSM框架
- idea搭建簡易ssm專案IdeaSSM
- 【從零開始 圖文詳解】IDEA整合SSM框架:Spring+SpringMVC+MybatisIdeaSSM框架SpringMVCMyBatis
- 在Intellij IDEA中如何配置MavenIntelliJIdeaMaven
- 為何IntelliJ IDEA比Eclipse更好IntelliJIdeaEclipse