
mybatis
文章平均质量分 71
一颗小白羊
。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
结合 springboot 在 mybatis 中使用枚举常量
1. application.properties 配置文件#oracle 配置spring.datasource.url=jdbc:oracle:thin:@192.168.1.100:1521/ORCLspring.datasource.username=TESTspring.datasource.password=111111spring.datasource.driver-cl...原创 2020-01-16 23:15:51 · 1272 阅读 · 0 评论 -
(MAC) IntelliJ IDEA + gradle + springboot + security + mybatis + oracle + Thymeleaf 项目构建简单的登录验证
@[TOC]( (MAC) IntelliJ IDEA + gradle + springboot + security + mybatis + oracle + Thymeleaf 项目构建简单的登录验证)1. 新建一个项目1.2 file —> new —> Module
spring + springmvc + mybatis 框架简单构建(-)简介ide:intellij idea服务器:tomcat 9.0database: oracle 11gjdk81. 创建maven项目1.1 jar依赖1.2 目录结构2. 导入需要的包pom.xml<?xml version="1.0" encoding="UTF-8"?>...原创 2019-08-28 20:00:36 · 146 阅读 · 0 评论 -
spring + springmvc + mybatis 框架简单构建(二)
spring + springmvc + mybatis 框架简单构建(二)创建controller的响应结果对象(ResponseResult)ResponseResult.javapackage com.entity;public class ResponseResult { private Integer state = 200; private String message;...原创 2019-08-28 22:40:17 · 133 阅读 · 0 评论