-
问题的解决:前后端分离,出现ajax跨域问题,session不能共享,无法在后端获取到session值
查看全部 -
password传了值却为空,由于java只支持16位,因此出错,做修改
查看全部 -
service层返回用model
查看全部 -
@CrossOrigin(allowCredentials = "true", allowedHeaders = "*") //解决跨域问题
查看全部 -
枚举类-状态码的应用
----前后端的协调,模块开发之间的协调
查看全部 -
生态介绍
springBoot简介
查看全部 -
属性文件配置
查看全部 -
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> <generatorConfiguration> <!--驱动包的路径--> <!--<classPathEntry location="C:\Users\lhf\.m2\repository\mysql\mysql-connector-java\5.1.46\mysql-connector-java-5.1.46.jar" />--> <!--数据库连接--> <context id="DB2Tables" targetRuntime="MyBatis3"> <!--注释--> <commentGenerator> <property name="suppressAllComments" value="true"/> <property name="suppressDate" value="true"/> </commentGenerator> <!--数据库连接地址及账号密码--> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3306/seckill" userId="root" password="root"> </jdbcConnection> <javaTypeResolver > <property name="forceBigDecimals" value="false" /> </javaTypeResolver> <!--生成DataObject类存放位置--> <javaModelGenerator targetPackage="com.lhf.springboot.dataobject" targetProject="src/main/java"> <!--是否对model添加构造函数--> <property name="constructorBased" value="false"/> <!--是否允许子包--> <property name="enableSubPackages" value="true"/> <!--建立的model对象是否不可变,也就是生成的model没有setter方法--> <property name="immutable" value="false"/> <property name="trimStrings" value="true"/> </javaModelGenerator> <!--生成映射文件存放位置--> <sqlMapGenerator targetPackage="mapping" targetProject="src/main/resources"> <property name="enableSubPackages" value="true" /> </sqlMapGenerator> <!--生成Dao类的存放位置--> <!-- 客户端代码,生成易于使用的正对Model对象和XML配置文件的代码 type="ANNOTATEDMAPPER", 生成Java Model和基于注解的Mapper对象 type="MIXEDMAPPER", 生成基于注解的Java Model和相应的Mapper对象 type="XMLMAPPER", 生成SQLMap XML文件和独立的Mapper接口 --> <javaClientGenerator type="XMLMAPPER" targetPackage="com.lhf.springboot.dao" targetProject="src/main/java"> <property name="enableSubPackages" value="true" /> </javaClientGenerator> <!--生成对应表及类名--> <!--<table schema="mybatis" tableName="user_info" domainObjectName="UserDO" enableInsert="true" enableSelectByExample="false" enableDeleteByPrimaryKey="false" enableDeleteByExample="false" enableCountByExample="false" enableUpdateByExample="false" enableSelectByPrimaryKey="true" enableUpdateByPrimaryKey="true"/>--> <table tableName="user_info" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" enableInsert="true" enableDeleteByPrimaryKey="false" ></table> <table tableName="user_password" domainObjectName="UserPassword" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" enableInsert="true" enableDeleteByPrimaryKey="false" ></table> </context> </generatorConfiguration>
查看全部 -
@EnableAutoConfiguration:我将启动类当成自动化可以配置的Bean,并且能够可以开启整个工程基于Spring的自动化配置,开启自动装配
启动Spring的项目:SpringApplication.run(当前类的.class,main方法的参数(args))
配置成功:不需要外力,Spring自动启动tomcat容器
@RestController相当于@Controller,是Rest协议
查看全部 -
SpringBoot架构图
查看全部 -
SpringBoot简介
查看全部 -
创建商品,先在itemservice写方法,之后在impl写实现。
1.入库前的校验入参
2,转化itemmodel变为dataobject。
3.写入数据库
4.返回创建完成的对象。(创建完对象要返回实体,要上游知道我们创建的是什么样的对象)
尽可能让controller层简单,service层复杂。查看全部 -
先设计领域模型。商品库存与交易流水相关,对商品表的操作就是对库存表的操作。
销量放在item表中,发生交易,通过异步方式给销量+1,不影响下单。
建完数据库,逆向工程生成对象
查看全部 -
跨域问题。数据库id没自增。
<insert id="insertSelective" parameterType="com.miaoshaproject.dataobject.UserDO" keyProperty="id" useGeneratedKeys="true"> 为telphone加索引解决重复注册问题
查看全部 -
@CrossOrigin(allowCredentials = "true", allowedHeaders = "*")
查看全部
举报