springmvc项目改为springboot
spring mvc工程改为spring boot工程1.创建spring boot项目创建springboot项目将原项目中的文件复制过来,将webapp目录设置为web资源目录(File->Project Structure->Modules->(项目名)->Web->Web Resource Directories点击+选择webapp)2.引入相关依赖这里需要
·
spring mvc工程改为spring boot工程
1.创建spring boot项目
创建springboot项目将原项目中的文件复制过来,将webapp目录设置为web资源目录(File->Project Structure->Modules->(项目名)->Web->Web Resource Directories点击+选择webapp)
2.引入相关依赖
这里需要引入数据库依赖、如果原项目中用到jsp页面需要引入jsp、jstl依赖
<!--mysql驱动-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.24</version>
</dependency>
<!-- druid数据源依赖 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.21</version>
</dependency>
<!--jsp依赖-->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<!--jstl-->
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
3.设置资源目录
在build最下边添加以下代码
<resources>
<!--指定src/main/java为资源目录-->
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.*</include>
</includes>
</resource>
<!--指定webapp为资源目录-->
<resource>
<directory>src/main/webapp</directory>
<targetPath>META-INF/resources</targetPath>
<includes>
<include>**/*.*</include>
</includes>
</resource>
</resources>
4.编写配置文件
#注册映射文件
mybatis:
#注册映射文件
mapper-locations: classpath:com\**\dao\*.xml
#注册实体类所在的包
type-aliases-package: com.commons.beans
#配置数据源
spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql:///pm?serverTimezone=GMT
username: root
password: 123456
5.将所有dao下的接口添加注解@Mapper
更多推荐
已为社区贡献1条内容
所有评论(0)