-
相关的jar包
com.alibaba: druid
org.mybatis.spring.boot: mybatis-spring-boot-starter
查看全部 -
Mybatis集成
application.properties:
server.port = 8090; //tomcat改变端口为8090
阿里巴巴的连接池
<dependecy>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
</dependecy>
<configurationFile>
mybatis.xml文件生成的路径
</configurationFile>
mybatis.mapperLocations=classpath:mapping/*. xml //找到所有。Mapping文件
查看全部 -
@EnableAutoConfiguration:我将启动类当成自动化可以配置的Bean,并且能够可以开启整个工程基于Spring的自动化配置,开启自动装配
启动Spring的项目:SpringApplication.run(当前类的.class,main方法的参数(args))
配置成功:不需要外力,Spring自动启动tomcat容器
@RestController相当于@Controller,是Rest协议
查看全部 -
Spring Boot介绍
查看全部 -
validator的学习
查看全部 -
@EnableAutoConfiguration 注解 把App类当成自动装配base的类 可以基于SpringBoot 的配置
查看全部 -
残留问题,什么传到密码里面的usermodel会显示空
查看全部 -
添加注解CorssOrgin来解决跨域请求,但是对于ajax的跨域请求是无法做到共享的。无法做到session共享。需要把里面的1个false改为true。allowCredentials=“true”;allowedHeaders=“*”;
查看全部 -
idea构建maven项目,file--project 选择maven 如果选择轻量的jar选quickstart,如果是war包则选择webapp 生成后,需要标注谁是源码,即source ,还要添加resources 默认idea会生成sping框架的配置信息,以及maven的pom文件查看全部
-
秒杀系统架构图
查看全部 -
配置文件:application.properties 中 server.port=指定端口号
pom中引入 com.alibaba 的连接池
查看全部 -
注解EnableAutoConfiguration: 将类当做一个自动化可以配置的bean 并能作为springBoot的自动化配置;
注解 RestController:为controller层
查看全部 -
Spring Family
查看全部 -
落单减库存实现:
amount:数量 stock:库存
update item_stock set stock = stock - #{amount}
where item_id = #{itemId} and stock >= #{amount}
查看全部 -
执行sql语句,成功获取数据库中的用户信息
查看全部
举报