2020-02-25

Posted chang1024

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2020-02-25相关的知识,希望对你有一定的参考价值。

庚子鼠年 戊寅月 戊戌日

描述

springboot练习

随笔

整合Druid

JDBCTemplate的使用 https://blog.csdn.net/qq_23329167/article/details/81841996

参考博客:https://www.cnblogs.com/SimpleWu/p/10049825.html

整合mybatis

https://blog.csdn.net/qq_40674583/article/details/104499926

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >

<mapper namespace="chang.mapper.UserMapper">

    <insert id="addUser" parameterType="user">
        insert into user(xh,username,sex,banji,xb) values (#{xh},#{username},#{sex},#{banji},#{xb});
    </insert>

    <delete id="deleteUser">
        delete from user where xh = #{xh}
    </delete>

    <update id="updataUser" parameterType="map">
        <if test="#{xh} != null">
            update user
            <set>
                <if test="#{username} != null">username = #{username},</if>
                <if test="#{sex} != null">sex = #{sex},</if>
                <if test="#{banji} != null">username = #{banji},</if>
                <if test="#{xb} != null">xb = #{xb},</if>
            </set>
            where xh = #{xh}
        </if>
    </update>

    <select id="findOneByXh" resultType="user">
        select * from user where xh = #{xh}
    </select>
</mapper>

spring安全

swagger

异步任务

邮件任务

分布式RPC

微服务

Dubbo和Zookeeper

Dubbo-admin

以上是关于2020-02-25的主要内容,如果未能解决你的问题,请参考以下文章

BigQuery - 组合零散的事件

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板