Spring-Boot程序员Android技术知识

电商毕业设计小节2

2018-05-10  本文已影响125人  cmazxiaoma

前言

在写基于Spring Boot的高并发秒杀Demo的时候,遇到了一点问题,因此记录下来。

遇到的问题

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <configuration>
                    <nonFilteredFileExtensions>
                        <nonFilteredFileExtension>woff</nonFilteredFileExtension>
                        <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
                        <nonFilteredFileExtension>eot</nonFilteredFileExtension>
                        <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
                        <nonFilteredFileExtension>svg</nonFilteredFileExtension>
                    </nonFilteredFileExtensions>
                </configuration>
            </plugin>


            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>*</include>
                    <include>*/*</include>
                    <!--copy static文件夹下面所有-->
                    <include>*/**</include>
                </includes>
                <filtering>true</filtering>
            </resource>

  <select id="killByProcedure" statementType="CALLABLE">
    <![CDATA[
      call execute_seckill(
        #{seckillId, jdbcType=BIGINT, mode=IN},
        #{phone, jdbcType=BIGINT, mode=IN},
        #{killTime, jdbcType=TIMESTAMP, mode=IN},
        #{result, jdbcType=INTEGER, mode=OUT}
      )
    ]]>
  </select>

尾言

只有不断的成长,不断的输出价值,才不会被公司扼住咽喉。
电商项目地址:https://github.com/cmazxiaoma/groupon
电商秒杀业务项目地址:https://github.com/cmazxiaoma/mallSeckill

上一篇下一篇

猜你喜欢

热点阅读