first commit
This commit is contained in:
49
target/classes/application-dev.properties
Normal file
49
target/classes/application-dev.properties
Normal file
@@ -0,0 +1,49 @@
|
||||
#数据源的地址
|
||||
spring.datasource.url=jdbc:mysql://localhost:3306/db_boot_movie?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT
|
||||
spring.datasource.username=root
|
||||
spring.datasource.password=root
|
||||
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
||||
spring.datasource.continue-on-error=false
|
||||
spring.datasource.test-while-idle=true
|
||||
#获取连接时候验证,会影响性能
|
||||
spring.datasource.test-on-borrow=false
|
||||
#在连接归还到连接池时是否测试该连接
|
||||
spring.datasource.test-on-return=false
|
||||
spring.datasource.validation-query=SELECT 1 FROM DUAL
|
||||
#空闲连接回收的时间间隔,与test-while-idle一起使用,设置5分钟
|
||||
spring.datasource.time-between-eviction-runs-millis=300000
|
||||
#连接池空闲连接的有效时间 ,设置30分钟
|
||||
spring.datasource.min-evictable-idle-time-millis=1800000
|
||||
spring.datasource.initial-size=5
|
||||
#指定连接池中最大的活跃连接数.
|
||||
spring.datasource.max-active=50
|
||||
#指定连接池等待连接返回的最大等待时间,毫秒单位.
|
||||
spring.datasource.max-wait=60000
|
||||
#指定必须保持连接的最小值
|
||||
spring.datasource.min-idle=5
|
||||
|
||||
spring.jpa.database=mysql
|
||||
#是否打印显示sql语句到控制台
|
||||
spring.jpa.show-sql=true
|
||||
# 自动检查实体和数据库表是否一致,如果不一致则会进行更新数据库表
|
||||
spring.jpa.hibernate.ddl-auto=update
|
||||
spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
|
||||
#热部署生效
|
||||
spring.devtools.restart.enabled=true
|
||||
#图片上传设置
|
||||
movie.upload.photo.sufix=.jpg,.png,.gif,.jpeg
|
||||
movie.upload.photo.maxsize=1024
|
||||
movie.upload.photo.path=D:/workspaceCustomMade/movie/src/main/resources/upload/
|
||||
#视频上传设置
|
||||
movie.upload.video.sufix=.mp4,.avi,.rmvb,.flv,.mkv,.wmv
|
||||
movie.upload.video.maxsize=204800
|
||||
movie.upload.video.path=D:/workspaceCustomMade/movie/src/main/resources/upload/video/
|
||||
#数据库备份设置
|
||||
movie.database.backup.dir=D:/workspaceCustomMade/movie/src/main/resources/backup/
|
||||
movie.database.backup.username=ylrc
|
||||
movie.database.backup.password=1
|
||||
movie.database.backup.database.name=db_boot_movie
|
||||
#最大选座数
|
||||
movie.select.seat.max.num=4
|
||||
#订单超时未支付取消时间
|
||||
movie.order.timeout=900
|
||||
37
target/classes/application.properties
Normal file
37
target/classes/application.properties
Normal file
@@ -0,0 +1,37 @@
|
||||
########################################################
|
||||
########################################################
|
||||
server.port=8080
|
||||
server.servlet.session.timeout=1800
|
||||
spring.jackson.time-zone=GMT+8
|
||||
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
|
||||
#定义加载的配置文件
|
||||
spring.profiles.active=dev
|
||||
###FREEMARKER
|
||||
#设置是否允许HttpServletRequest属性重写(隐藏)控制器生成的同名模型属性。
|
||||
spring.freemarker.allow-request-override=false
|
||||
spring.freemarker.cache=false
|
||||
spring.freemarker.check-template-location=true
|
||||
spring.freemarker.charset=UTF-8
|
||||
spring.freemarker.content-type=text/html
|
||||
#设置是否应在与模板合并之前将所有请求属性添加到模型中。
|
||||
spring.freemarker.expose-request-attributes=false
|
||||
#设置是否允许HttpSession属性重写(隐藏)控制器生成的同名模型属性。
|
||||
spring.freemarker.expose-session-attributes=false
|
||||
#设置是否公开名为“Spring macro RequestContext”的RequestContext供Spring的宏库使用.
|
||||
spring.freemarker.expose-spring-macro-helpers=false
|
||||
spring.freemarker.prefix=
|
||||
#spring.freemarker.request-context-attribute=
|
||||
#spring.freemarker.settings.
|
||||
spring.freemarker.settings.template_update_delay=0
|
||||
spring.freemarker.settings.default_encoding=UTF-8
|
||||
spring.freemarker.suffix=.ftl
|
||||
spring.freemarker.template-loader-path=classpath:/templates/
|
||||
#spring.freemarker.view-names= # whitelist of view names that can be resolved
|
||||
spring.freemarker.settings.number_format=0.##
|
||||
spring.servlet.multipart.maxFileSize=350MB
|
||||
spring.servlet.multipart.maxRequestSize=350MB
|
||||
#text
|
||||
show.tips.text=
|
||||
show.tips.url.text=
|
||||
show.tips.btn.text=
|
||||
show.tips.url=https://www.baidu.com
|
||||
BIN
target/classes/com/demo/movie/App.class
Normal file
BIN
target/classes/com/demo/movie/App.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/annotion/ValidateEntity.class
Normal file
BIN
target/classes/com/demo/movie/annotion/ValidateEntity.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/CinemaServices.class
Normal file
BIN
target/classes/com/demo/movie/bean/CinemaServices.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/CinemaSessionType.class
Normal file
BIN
target/classes/com/demo/movie/bean/CinemaSessionType.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/CodeMsg.class
Normal file
BIN
target/classes/com/demo/movie/bean/CodeMsg.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/MovieArea.class
Normal file
BIN
target/classes/com/demo/movie/bean/MovieArea.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/MovieLang.class
Normal file
BIN
target/classes/com/demo/movie/bean/MovieLang.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/MovieType.class
Normal file
BIN
target/classes/com/demo/movie/bean/MovieType.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/PageBean.class
Normal file
BIN
target/classes/com/demo/movie/bean/PageBean.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/PayLogStats.class
Normal file
BIN
target/classes/com/demo/movie/bean/PayLogStats.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/PaymentType.class
Normal file
BIN
target/classes/com/demo/movie/bean/PaymentType.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/bean/Result.class
Normal file
BIN
target/classes/com/demo/movie/bean/Result.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/config/AppConfig.class
Normal file
BIN
target/classes/com/demo/movie/config/AppConfig.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/config/admin/AdminWebConfig.class
Normal file
BIN
target/classes/com/demo/movie/config/admin/AdminWebConfig.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/config/home/AlipayConfig.class
Normal file
BIN
target/classes/com/demo/movie/config/home/AlipayConfig.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/config/home/HomeWebConfig.class
Normal file
BIN
target/classes/com/demo/movie/config/home/HomeWebConfig.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/constant/RuntimeConstant.class
Normal file
BIN
target/classes/com/demo/movie/constant/RuntimeConstant.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/constant/SessionConstant.class
Normal file
BIN
target/classes/com/demo/movie/constant/SessionConstant.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/admin/DatabaseBakDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/admin/DatabaseBakDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/admin/MenuDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/admin/MenuDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/admin/OperaterLogDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/admin/OperaterLogDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/admin/OrderAuthDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/admin/OrderAuthDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/admin/RoleDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/admin/RoleDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/admin/UserDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/admin/UserDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/AccountDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/AccountDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/AreaDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/AreaDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/CinemaCommentDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/CinemaCommentDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/CinemaDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/CinemaDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/CinemaHallDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/CinemaHallDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/CinemaHallSeatDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/CinemaHallSeatDao.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/MovieCommentDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/MovieCommentDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/MovieDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/MovieDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/NewsCategoryDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/NewsCategoryDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/NewsDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/NewsDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/OrderDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/OrderDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/OrderItemDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/OrderItemDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/dao/common/PayLogDao.class
Normal file
BIN
target/classes/com/demo/movie/dao/common/PayLogDao.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/admin/DatabaseBak.class
Normal file
BIN
target/classes/com/demo/movie/entity/admin/DatabaseBak.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/admin/Menu.class
Normal file
BIN
target/classes/com/demo/movie/entity/admin/Menu.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/admin/OperaterLog.class
Normal file
BIN
target/classes/com/demo/movie/entity/admin/OperaterLog.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/admin/OrderAuth.class
Normal file
BIN
target/classes/com/demo/movie/entity/admin/OrderAuth.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/admin/Role.class
Normal file
BIN
target/classes/com/demo/movie/entity/admin/Role.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/admin/User.class
Normal file
BIN
target/classes/com/demo/movie/entity/admin/User.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/Account.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/Account.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/Area.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/Area.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/BaseEntity.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/BaseEntity.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/Cinema.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/Cinema.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/CinemaComment.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/CinemaComment.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/CinemaHall.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/CinemaHall.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/CinemaHallSeat.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/CinemaHallSeat.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/Movie.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/Movie.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/MovieComment.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/MovieComment.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/News.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/News.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/NewsCategory.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/NewsCategory.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/Order.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/Order.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/OrderItem.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/OrderItem.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/entity/common/PayLog.class
Normal file
BIN
target/classes/com/demo/movie/entity/common/PayLog.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/demo/movie/listener/SessionListener.class
Normal file
BIN
target/classes/com/demo/movie/listener/SessionListener.class
Normal file
Binary file not shown.
BIN
target/classes/com/demo/movie/pay/Alipay.class
Normal file
BIN
target/classes/com/demo/movie/pay/Alipay.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/demo/movie/schedule/admin/OrderSchedule.class
Normal file
BIN
target/classes/com/demo/movie/schedule/admin/OrderSchedule.class
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user