SpringBoot的MVC开发模式环境搭建
程序员文章站
2024-02-25 14:29:45
...
1.我这里以idea为开发工具搭建
首先下载一个idea,可以去官网下载添加链接描述然后给你们提供一个**方法,如果不行了的话,可以自行百度添加链接描述
2.然后要先配置一个Maven到进行自动导包
教程点击这里:添加链接描述
3.这些都准备好了以后,就可以开始搭建了
3.1到这里项目就算是搭建成了,然后开始配置相关的开发环境
手动创建Mybatis的配置文件和springBoot的配置文件
springboot的配置文件内容如下
#修改端口:
server.port=8080
#视图解析器
spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp
#指定html,css等文件的公共位置
spring.mvc.static-path-pattern=/**
#spring.resources.static-locations= classpath:/templates/*.html
spring.resources.static-locations= classpath:/templates/,classpath:/static/
#Oracle数据源
#spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
#spring.datasource.url=jdbc:oracle:thin:@192.168.20.199:1521:orcl
#spring.datasource.username=eleandb
#spring.datasource.password=123
#Mysql数据源
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test
spring.datasource.username=root
spring.datasource.password=123456
#指定扫描mybatis配置文件路径
mybatis.config-location=classpath:mybatis-config.xml
mybatis.mapper-locations=classpath:mapper/*.xml
#启动mybatis日志
logging.level.com.example.hznboot.dao=debug
然后在springboot的main方法类上面加入自动创建对象扫描