基本信息
源码名称:java高并发秒杀api源码
源码大小:0.06M
文件格式:.zip
开发语言:Java
更新时间:2023-12-11
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
java高并发秒杀api源码

.
├── java高并发秒杀api源码_minnkill.zip
└── minnkill
    ├── pom.xml
    ├── src
    │   ├── main
    │   │   ├── java
    │   │   │   └── org
    │   │   │       └── forezp
    │   │   │           ├── dao
    │   │   │           │   ├── SeckillDao.java
    │   │   │           │   └── SuccessKilledDao.java
    │   │   │           ├── dto
    │   │   │           │   ├── Exposer.java
    │   │   │           │   ├── SeckillExecution.java
    │   │   │           │   └── SeckillResult.java
    │   │   │           ├── entity
    │   │   │           │   ├── Seckill.java
    │   │   │           │   └── SuccessKilled.java
    │   │   │           ├── enums
    │   │   │           │   └── SeckillStatEnum.java
    │   │   │           ├── exception
    │   │   │           │   ├── RepeatKillException.java
    │   │   │           │   ├── SeckillCloseException.java
    │   │   │           │   └── SeckillException.java
    │   │   │           ├── service
    │   │   │           │   ├── SeckillService.java
    │   │   │           │   └── impl
    │   │   │           │       └── SeckillServiceImpl.java
    │   │   │           └── web
    │   │   │               └── SeckillController.java
    │   │   ├── resources
    │   │   │   ├── jdbc.properties
    │   │   │   ├── logback.xml
    │   │   │   ├── mapper
    │   │   │   │   ├── SeckillDao.xml
    │   │   │   │   └── SuccessKilledDao.xml
    │   │   │   ├── mybatis-config.xml
    │   │   │   └── spring
    │   │   │       ├── spring-dao.xml
    │   │   │       ├── spring-service.xml
    │   │   │       └── spring-web.xml
    │   │   └── webapp
    │   │       ├── META-INF
    │   │       │   └── MANIFEST.MF
    │   │       ├── WEB-INF
    │   │       │   ├── classes
    │   │       │   │   └── org
    │   │       │   │       └── forezp
    │   │       │   │           ├── dao
    │   │       │   │           │   ├── SeckillDao.class
    │   │       │   │           │   ├── SeckillDaoTest.class
    │   │       │   │           │   ├── SuccessKilledDao.class
    │   │       │   │           │   └── SuccessKilledDaoTest.class
    │   │       │   │           ├── dto
    │   │       │   │           │   ├── Exposer.class
    │   │       │   │           │   ├── SeckillExecution.class
    │   │       │   │           │   └── SeckillResult.class
    │   │       │   │           ├── entity
    │   │       │   │           │   ├── Seckill.class
    │   │       │   │           │   └── SuccessKilled.class
    │   │       │   │           ├── enums
    │   │       │   │           │   └── SeckillStatEnum.class
    │   │       │   │           ├── exception
    │   │       │   │           │   ├── RepeatKillException.class
    │   │       │   │           │   ├── SeckillCloseException.class
    │   │       │   │           │   └── SeckillException.class
    │   │       │   │           ├── service
    │   │       │   │           │   ├── SeckillService.class
    │   │       │   │           │   └── impl
    │   │       │   │           │       └── SeckillServiceImpl.class
    │   │       │   │           └── web
    │   │       │   │               └── SeckillController.class
    │   │       │   ├── jsp
    │   │       │   │   ├── common
    │   │       │   │   │   ├── head.jsp
    │   │       │   │   │   └── tag.jsp
    │   │       │   │   ├── detail.jsp
    │   │       │   │   └── list.jsp
    │   │       │   ├── lib
    │   │       │   └── web.xml
    │   │       ├── index.jsp
    │   │       └── resources
    │   │           └── script
    │   │               └── seckill.js
    │   └── test
    │       ├── java
    │       │   └── org
    │       │       └── forezp
    │       │           └── dao
    │       │               ├── SeckillDaoTest.java
    │       │               └── SuccessKilledDaoTest.java
    │       └── resources
    └── target
        ├── classes
        │   ├── jdbc.properties
        │   ├── logback.xml
        │   ├── mapper
        │   │   ├── SeckillDao.xml
        │   │   └── SuccessKilledDao.xml
        │   ├── mybatis-config.xml
        │   └── spring
        │       ├── spring-dao.xml
        │       ├── spring-service.xml
        │       └── spring-web.xml
        ├── m2e-jee
        │   └── web-resources
        │       └── META-INF
        │           ├── MANIFEST.MF
        │           └── maven
        │               └── org.forezp
        │                   └── minnkill
        │                       ├── pom.properties
        │                       └── pom.xml
        └── test-classes

53 directories, 61 files