资源简介

该系统是用javaEE开发的手机商城系统,采用jsp+servlet+bean的MVC模式进行开发,数据库采用的是mysql,其中包含文件上传至阿里云,支付宝沙箱环境支付等等功能。(含数据库)

资源截图

代码片段和文件信息

package com.alipay.config;

import java.io.FileWriter;
import java.io.IOException;

/* *
 *类名:AlipayConfig
 *功能:基础配置类
 *详细:设置帐户有关信息及返回路径
 *修改日期:2017-04-05
 *说明:
 *以下代码只是为了方便商户测试而提供的样例代码,商户可以根据自己网站的需要,按照技术文档编写并非一定要使用该代码。
 *该代码仅供学习和研究支付宝接口使用,只是提供一个参考。
 */

public class AlipayConfig {

//↓↓↓↓↓↓↓↓↓↓请在这里配置您的基本信息↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

// 应用ID您的APPID,收款账号既是您的APPID对应支付宝账号
public static String app_id = “换成自己的“;

// 商户私钥,您的PKCS8格式RSA2私钥
    public static String merchant_private_key = “换成自己的“;

// 支付宝公钥查看地址:https://openhome.alipay.com/platform/keyManage.htm 对应APPID下的支付宝公钥。
    public static String alipay_public_key = “换成自己的“;

// 服务器异步通知页面路径  需http://格式的完整路径,不能加?id=123这类自定义参数,必须外网可以正常访问
//public static String notify_url = “http://工程公网访问地址/alipay.trade.page.pay-JAVA-UTF-8/notify_url.jsp“;

// 页面跳转同步通知页面路径 需http://格式的完整路径,不能加?id=123这类自定义参数,必须外网可以正常访问
public static String return_url = “http://tfuvds.natappfree.cc/CellPhoneShop/front/return_url.jsp“;

// 签名方式
public static String sign_type = “RSA2“;

// 字符编码格式
public static String charset = “utf-8“;

// 支付宝网关
public static String gatewayUrl = “https://openapi.alipaydev.com/gateway.do“;

// 支付宝网关
public static String log_path = “C:\\“;


//↑↑↑↑↑↑↑↑↑↑请在这里配置您的基本信息↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑

    /** 
     * 写日志,方便测试(看网站需求,也可以改成把记录存入数据库)
     * @param sWord 要写入日志里的文本内容
     */
    public static void logResult(String sWord) {
        FileWriter writer = null;
        try {
            writer = new FileWriter(log_path + “alipay_log_“ + System.currentTimeMillis()+“.txt“);
            writer.write(sWord);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (writer != null) {
                try {
                    writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       9577  2019-10-28 10:24  cellphone.sql

     文件       2731  2018-12-14 11:53  CellPhoneShop\.classpath

     文件       1046  2018-10-08 11:02  CellPhoneShop\.project

     文件        503  2018-10-08 11:02  CellPhoneShop\.settings\.jsdtscope

     文件        118  2018-11-16 11:07  CellPhoneShop\.settings\org.eclipse.core.resources.prefs

     文件        364  2018-10-08 11:02  CellPhoneShop\.settings\org.eclipse.jdt.core.prefs

     文件        568  2018-10-30 15:43  CellPhoneShop\.settings\org.eclipse.wst.common.component

     文件        345  2018-10-08 11:02  CellPhoneShop\.settings\org.eclipse.wst.common.project.facet.core.xml

     文件         49  2018-10-08 11:02  CellPhoneShop\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2018-10-08 11:02  CellPhoneShop\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件       1949  2019-10-28 10:29  CellPhoneShop\build\classes\com\alipay\config\AlipayConfig.class

     文件        368  2019-03-08 14:02  CellPhoneShop\build\classes\com\cool\Constant.class

     文件        845  2019-03-08 14:02  CellPhoneShop\build\classes\dao\AdminDao.class

     文件        222  2019-03-08 14:02  CellPhoneShop\build\classes\dao\BrandDao.class

     文件       3420  2019-03-08 14:02  CellPhoneShop\build\classes\dao\BrandDaoImpl.class

     文件        494  2019-03-08 14:02  CellPhoneShop\build\classes\dao\CellphoneCMDao.class

     文件       7313  2019-03-08 14:02  CellPhoneShop\build\classes\dao\CellphoneCMDaoImpl.class

     文件        645  2019-03-08 14:02  CellPhoneShop\build\classes\dao\CellphoneDao.class

     文件       7854  2019-03-08 14:02  CellPhoneShop\build\classes\dao\CellphoneDaoImpl.class

     文件        291  2019-03-08 14:02  CellPhoneShop\build\classes\dao\CommentManageDao.class

     文件       3836  2019-03-08 14:02  CellPhoneShop\build\classes\dao\CommentManageDaoImpl.class

     文件       3739  2019-10-28 10:30  CellPhoneShop\build\classes\dao\FileDao.class

     文件        335  2019-03-08 14:02  CellPhoneShop\build\classes\dao\front\AddressDao.class

     文件       2926  2019-03-08 14:02  CellPhoneShop\build\classes\dao\front\AddressDaoImpl.class

     文件        444  2019-03-08 14:02  CellPhoneShop\build\classes\dao\front\CellphoneInformationDao.class

     文件       3562  2019-03-08 14:02  CellPhoneShop\build\classes\dao\front\CellphoneInformationDaoImpl.class

     文件        260  2019-03-08 14:02  CellPhoneShop\build\classes\dao\front\CellphoneListDao.class

     文件       3838  2019-03-08 14:02  CellPhoneShop\build\classes\dao\front\CellphoneListDaoImpl.class

     文件        240  2019-03-08 14:02  CellPhoneShop\build\classes\dao\front\CommentDao.class

     文件       3297  2019-03-08 14:02  CellPhoneShop\build\classes\dao\front\CommentDaoImpl.class

............此处省略389个文件信息

评论

共有 条评论