-
dao层,也有叫mapper层,一个数据访问接口(Data Access Object,) 里面是**mapper.java, 当操作这个对象的方法时候,会自动产生SQL语句来和数据库进行交互
查看全部 -
@EnableAutoConfiguration的作用:将App这个类设置成可以支持自动化启动的bean,并且能够开启整个工程的基于springboot自动化的一个配置
查看全部 -
项目流程简介
查看全部 -
spring框架的组成部分
查看全部 -
系统现有缺陷和待优化点
查看全部 -
项目整体结构
查看全部 -
秒杀系统架构图
查看全部 -
数据库字段何时用not null。以手机号为例,如果业务上它是必须的,那么可以设置为not null,并加唯一索引,包括第三方登陆也要强绑定手机号。如果业务上不是必须的,那么建议用null,此时加唯一索引时,null不受唯一索引约束。
查看全部 -
ajax方法return false的目的是js冒泡事件传递思想,会传递到onclick上一层,此时把它捕获,不传递上一层。
查看全部 -
1.maven项目创建 mavenquickstart 2.查看全部
-
<?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>
查看全部 -
注意, service的实现类是需要加 @Service 的
查看全部 -
wcqwcqwcqcqwdaawdqwd
查看全部 -
Intest
查看全部 -
BeanUtils.copyProperties拷贝源实体到新实体所有相同字段。查看全部
举报
0/150
提交
取消