SpringBoot

启动类(有@SpringBootApplication注解的类)一定要放在根包下

一般java source下会放置一个包,所有类都在这个包下。这样扫描的类都在这个包下

格式化插件

        <plugin>
            <groupId>com.coveo</groupId>
            <artifactId>fmt-maven-plugin</artifactId>
            <version>2.5.1</version>
            <executions>
                <execution>
                    <goals>
                        <goal>format</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

Mybatis

要让mybatis扫描指定包下的mapper文件


@org.mybatis.spring.annotation.MapperScan(
    value = {
      "com.xxx.ad.data.bi.analysis.service.dao.scene.task.mapper",
      "com.xxx.ad.data.bi.analysis.service.dao.self.service.mapper",
      "com.xxx.ad.data.bi.analysis.service.dao.correlation.task.mapper",
      "com.xxx.ad.data.bi.analysis.service.dao.feedback.mapper",
      "com.xxx.ad.data.bi.analysis.service.dao.predict.mapper"
    })

application.yml中配置

则resources打包后,会变成classpath下的文件。所以寻找配置xml的时候去这个路径找


mybatis:
  typeHandlersPackage: "com.xxx.ad.data.bi.analysis.service.component"
  mapper-locations: classpath:mybatis_mapper/*.xml
  configuration:
    map-underscore-to-camel-case: true


部分标签用法


<update id="updateExecutionExtraDataByTaskExecutionId">
  UPDATE compass_analysis_scene_task_execution
  <set>
    <if test="entity.comparisonType != null">
      comparison_type = #{entity.comparisonType},
    </if>
    <if test="entity.subscriptionConfigJson != null">
      subscription_config_json = #{entity.subscriptionConfigJson},
    </if>
    <if test="entity.extraConfigJson != null">
      extra_config_json = #{entity.extraConfigJson},
    </if>
    <if test="entity.abnormalRuleJson != null">
      abnormal_rule_json = #{entity.abnormalRuleJson},
    </if>
    <if test="entity.abnormalResultJson != null">
      abnormal_result_json = #{entity.abnormalResultJson},
    </if>
  </set>
  WHERE id = #{entity.id}
</update>


<select id="getTreeSimpleMetaList" resultType="com.xxx.ad.data.bi.analysis.service.dto.scene.tree.response.TreeSimpleMeta">
    SELECT c.tree_id,
        version,
        root_metric_id,
        creator,
        modify_user,
        UNIX_TIMESTAMP(first_create_time) create_time,
        UNIX_TIMESTAMP(modify_time) modify_time,
        task_count,
        tree_name,
        tree_description,
        available_versions,
        project_id
    FROM
        (SELECT *
          FROM compass_analysis_scene_tree a
        INNER JOIN
        (SELECT max(id)max_id,
        group_concat(VERSION separator ',')available_versions,
        min(create_time) first_create_time
        FROM compass_analysis_scene_tree
        WHERE is_del=0 AND is_preview=0
        GROUP BY tree_id)b ON a.id=b.max_id
        AND is_del=0) c
    LEFT JOIN
        (SELECT tree_id,
          COUNT(1) task_count
        FROM compass_analysis_scene_task
        WHERE is_del=0
        GROUP BY tree_id)d
    ON c.tree_id=d.tree_id
  <where>
      is_del=0
      <if test="treeName != null">
          AND tree_name LIKE CONCAT('%', #{treeName}, '%')
      </if>
      <if test="userName != null">
          AND (creator = #{userName} OR modify_user = #{userName})
      </if>
      <if test="creator != null">
          AND creator = #{creator}
      </if>
      <if test="modifyUser != null">
          AND modify_user = #{modifyUser}
      </if>
      <if test="createTimeBegin != null">
          AND create_time > FROM_UNIXTIME(#{createTimeBegin})
      </if>
      <if test="createTimeEnd != null">
          AND create_time < FROM_UNIXTIME(#{createTimeEnd})
      </if>
      <if test="treeIds != null">
          AND c.tree_id IN
          <foreach collection="treeIds" item="item" index="index" open="(" separator="," close=")">
              #{item}
          </foreach>
      </if>
      <if test="rootMetricIds != null">
          AND root_metric_id IN
          <foreach collection="rootMetricIds" item="item" index="index" open="(" separator="," close=")">
              #{item}
          </foreach>
      </if>
      <if test="keyWord != null">
          AND (c.tree_id LIKE CONCAT('%', #{keyWord}, '%')
          OR tree_name LIKE CONCAT('%', #{keyWord}, '%'))
      </if>
      <if test="projectIds != null">
          AND project_id IN
          <foreach collection="projectIds" item="item" index="index" open="(" separator="," close=")">
              #{item}
          </foreach>
      </if>
      <if test="businessLineIds != null">
          AND project_id IN
          <foreach collection="businessLineIds" item="item" index="index" open="(" separator="," close=")">
              #{item}
          </foreach>
      </if>
  </where>
  ORDER BY ${orderBy} ${orderType}
</select>

全部评论

相关推荐

会飞的猿:我看你想进大厂,我给你总结一下学习路线吧,java语言方面常规八股要熟,那些java的集合,重点背hashmap八股吧,jvm类加载机制,运行时分区,垃圾回收算法,垃圾回收器CMS、G1这些,各种乐观锁悲观锁,线程安全,threadlocal这些。在进阶一些的比如jvm参数,内存溢出泄漏排查,jvm调优。我这里说的只是冰山一角,详细八股可以去网上找,这不用去买,都免费资源。mysql、redis可以去看小林coding,我看你简历上写了,你一定要熟,什么底层b+树、索引结构、innodb、mvcc、undo log、redo log、行级锁表级锁,这些东西高频出现,如果面试官问我这些我都能笑出来。消息队列rabbitmq也好kafka也好,学一种就行,什么分区啊副本啊确认机制啊怎么保证不重复消费、怎么保证消息不丢失这些基本的一定要会,进阶一点的比如LEO、高水位线、kafka和rocketmq底层零拷贝的区别等等。计算机网络和操作系统既然你是科班应该理解起来问题不大,去看小林coding这两块吧,深度够了。spring boot的八股好好看看吧,一般字节腾讯不这么问,其他的java大厂挺爱问的,什么循环依赖啥的去网上看看。数据结构的话科班应该问题不大,多去力扣集中突击刷题吧。项目的话其实说白了还是结合八股来,想一想你写的这些技术会给你挖什么坑。除此之外,还有场景题、rpc、设计模式、linux命令、ddd等。不会的就别往简历上写了,虽然技术栈很多的话好看些,但背起来确实累。总结一下,多去实习吧,多跳槽,直到跳到一个不错的中厂做跳板,这是一条可行的进大厂的路线。另外,只想找个小厂的工作的话,没必要全都照这些准备,太累了,重点放在框架的使用和一些基础八股吧。大致路线就这样,没啥太多难度,就是量大,你能达到什么高度取决于你对自己多狠,祝好。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务