• 大小: 80.85MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2022-02-08
  • 语言: Java
  • 标签: 商城  SSH框架  系统  java  

资源简介

这是一个完整的商城,基本功能基本完成,剩下的一些小细节自行完善。 该商城采用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\description
     目录           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-rebase.sample
     文件         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个文件信息

评论

共有 条评论