【实例简介】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
评论