资源简介
这是一个完整的商城,基本功能基本完成,剩下的一些小细节自行完善。
该商城采用SSH框架,主要分为前台(面向用户),后台(面向商家),内含数据库的sql文件,运行即可使用,和其他在线商城类似,不过没那么强大,原来当毕设的话需要完善一下,充当课程设计那是完全没问题的,多多下载哦!
代码片段和文件信息
package com.baidu.ueditor;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import com.baidu.ueditor.define.ActionMap;
import com.baidu.ueditor.define.AppInfo;
import com.baidu.ueditor.define.baseState;
import com.baidu.ueditor.define.State;
import com.baidu.ueditor.hunter.FileManager;
import com.baidu.ueditor.hunter.ImageHunter;
import com.baidu.ueditor.upload.Uploader;
public class ActionEnter {
private HttpServletRequest request = null;
private String rootPath = null;
private String contextPath = null;
private String actionType = null;
private ConfigManager configManager = null;
public ActionEnter ( HttpServletRequest request String rootPath ) {
this.request = request;
this.rootPath = rootPath;
this.actionType = request.getParameter( “action“ );
this.contextPath = request.getContextPath();
this.configManager = ConfigManager.getInstance( this.rootPath this.contextPath request.getRequestURI() );
}
public String exec () {
String callbackName = this.request.getParameter(“callback“);
if ( callbackName != null ) {
if ( !validCallbackName( callbackName ) ) {
return new baseState( false AppInfo.ILLEGAL ).toJSONString();
}
return callbackName+“(“+this.invoke()+“);“;
} else {
return this.invoke();
}
}
public String invoke() {
if ( actionType == null || !ActionMap.mapping.containsKey( actionType ) ) {
return new baseState( false AppInfo.INVALID_ACTION ).toJSONString();
}
if ( this.configManager == null || !this.configManager.valid() ) {
return new baseState( false AppInfo.CONFIG_ERROR ).toJSONString();
}
State state = null;
int actionCode = ActionMap.getType( this.actionType );
Mapject> conf = null;
switch ( actionCode ) {
case ActionMap.CONFIG:
return this.configManager.getAllConfig().toString();
case ActionMap.UPLOAD_IMAGE:
case ActionMap.UPLOAD_SCRAWL:
case ActionMap.UPLOAD_VIDEO:
case ActionMap.UPLOAD_FILE:
conf = this.configManager.getConfig( actionCode );
state = new Uploader( request conf ).doExec();
break;
case ActionMap.CATCH_IMAGE:
conf = configManager.getConfig( actionCode );
String[] list = this.request.getParameterValues( (String)conf.get( “fieldName“ ) );
state = new ImageHunter( conf ).capture( list );
break;
case ActionMap.LIST_IMAGE:
case ActionMap.LIST_FILE:
conf = configManager.getConfig( actionCode );
int start = this.getStartIndex();
state = new FileManager( conf ).listFile( start );
break;
}
return state.toJSONString();
}
public int getStartIndex () {
String start = this.request.getParameter( “start“ );
try {
return Integer.parseInt( start );
} catch ( Exception e ) {
return 0;
}
}
/**
* callback参数验证
*/
public boolean valid
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-10 18:54 商城\
文件 281110 2018-12-10 18:54 商城\forage.sql
目录 0 2018-12-10 18:54 商城\foragePro\
目录 0 2018-12-10 18:53 商城\foragePro\.git\
文件 16 2018-12-08 17:30 商城\foragePro\.git\COMMIT_EDITMSG
文件 93 2018-12-08 11:36 商城\foragePro\.git\FETCH_HEAD
文件 23 2018-12-03 16:11 商城\foragePro\.git\HEAD
文件 41 2018-12-08 11:36 商城\foragePro\.git\ORIG_HEAD
文件 399 2018-12-03 16:10 商城\foragePro\.git\config
文件 73 2018-11-27 13:53 商城\foragePro\.git\desc
目录 0 2018-12-10 18:53 商城\foragePro\.git\hooks\
文件 478 2018-11-27 13:53 商城\foragePro\.git\hooks\applypatch-msg.sample
文件 896 2018-11-27 13:53 商城\foragePro\.git\hooks\commit-msg.sample
文件 3327 2018-11-27 13:53 商城\foragePro\.git\hooks\fsmonitor-watchman.sample
文件 189 2018-11-27 13:53 商城\foragePro\.git\hooks\post-update.sample
文件 424 2018-11-27 13:53 商城\foragePro\.git\hooks\pre-applypatch.sample
文件 1642 2018-11-27 13:53 商城\foragePro\.git\hooks\pre-commit.sample
文件 1348 2018-11-27 13:53 商城\foragePro\.git\hooks\pre-push.sample
文件 4898 2018-11-27 13:53 商城\foragePro\.git\hooks\pre-reba
文件 544 2018-11-27 13:53 商城\foragePro\.git\hooks\pre-receive.sample
文件 1492 2018-11-27 13:53 商城\foragePro\.git\hooks\prepare-commit-msg.sample
文件 3610 2018-11-27 13:53 商城\foragePro\.git\hooks\update.sample
文件 200683 2018-12-10 08:27 商城\foragePro\.git\index
目录 0 2018-12-10 18:53 商城\foragePro\.git\info\
文件 240 2018-11-27 13:53 商城\foragePro\.git\info\exclude
目录 0 2018-12-10 18:53 商城\foragePro\.git\logs\
文件 6844 2018-12-08 17:30 商城\foragePro\.git\logs\HEAD
目录 0 2018-12-10 18:53 商城\foragePro\.git\logs\refs\
目录 0 2018-12-10 18:53 商城\foragePro\.git\logs\refs\heads\
文件 947 2018-11-28 15:30 商城\foragePro\.git\logs\refs\heads\csj
文件 3781 2018-12-08 17:30 商城\foragePro\.git\logs\refs\heads\master
............此处省略6672个文件信息
相关资源
- 基于Android的投票系统.zip
- 试卷管理系统
- jsp servlet mysql实现的学生考勤系统项目
- 微信小程序商城+java后台
- 基于Android平台的移动学习系统的设计
- java Swing mysql实现简单的购物系统项目
- 生产管理系统JAVA
- (Java)青果教务系统模拟登陆demo
- 基于Android的百度地图的导航定位系统
- 基于JAVA的科研管理信息系统设计毕设
- 详细设计基于Java的学生信息管理系统
- 黑马IDEA版本2018最新Java全套教程,包
- java项目门禁系统的面向对象设计
- 飞机票管理系统Java
- JSP图书管理系统含需求分析
- 数据库课程设计 网上书店管理系统包
- 简易进销存系统 Spring+Spring MVC+Mybati
- Java播放本地声音,实现系统报警
- 班级班费管理系统EJB3.0+mysql
- 在线投票系统源代码JSP+MySql
- java投票管理系统(源码)
- OA 办公系统Java实现
- 餐厅点餐系统分析与设计
- 基于JSP的校友录管理系统毕业论文,
- JSP+SQL水费管理系统
- 韵达物流管理系统
- 酒店预订系统毕业设计整套
- jsp留言板管理系统
- Java_GUI_SWing考试系统_MySql.rar
- java实现简单RSA 公钥密码系统 源代码
评论
共有 条评论