P2P前后端部分功能实现

项目搭建

web版本这里是用的2.5的

lib下导入jar包

项目需要的lib包

项目素材

项目整体目录

整体目录

com.zz.action下

接口类Action

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public interface Action {
	public void execute(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException;
}

实现类ActionServlet

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.context.WebApplicationContext;


public class ActionServlet extends HttpServlet {
	private static final long serialVersionUID = 1L;

	protected void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		doPost(request, response);
	}

	protected void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		request.setCharacterEncoding("UTF-8");
		response.setCharacterEncoding("UTF-8");
		response.setContentType("text/html; charset=UTF-8");
		String struri=request.getRequestURI();
		struri=struri.substring(struri.lastIndexOf("/")+1,struri.lastIndexOf("."));
		WebApplicationContext webctx=(WebApplicationContext) this.getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);
		Action action=(Action) webctx.getBean(struri);
		action.execute(request, response);
	}

}

config

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">

	<context:property-placeholder location="classpath:db.properties"/>
	
	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
		<property name="driverClass" value="${driverClass}"></property>
		<property name="jdbcUrl" value="${jdbcUrl}"></property>
		<property name="user" value="${user}"></property>
		<property name="password" value="${password}"></property>
	</bean>

	<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
		<property name="dataSource" ref="dataSource"></property>
	</bean>
	
	<bean id="namedParameterJdbcTemplate" class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate">
		<constructor-arg ref="dataSource"></constructor-arg>
	</bean>
	
	<bean id="objectMapper" class="com.fasterxml.jackson.databind.ObjectMapper"></bean>
	
	<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="dataSource"></property>
	</bean>
	
	<tx:annotation-driven transaction-manager="transactionManager"/>

	<context:component-scan base-package="com.zz"></context:component-scan>

</beans>

db.properties

driverClass=com.mysql.jdbc.Driver
jdbcUrl=jdbc:mysql://localhost:3306/p2p
user=root
password=123456

WEB-INF下的web.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>p2p-management</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:applicationContext.xml</param-value>
  </context-param>
  
  <listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  
  <servlet>
		<description></description>
		<display-name>ActionServlet</display-name>
		<servlet-name>ActionServlet</servlet-name>
		<servlet-class>com.zz.action.ActionServlet</servlet-class>
	</servlet>
	<servlet-mapping>
		<servlet-name>ActionServlet</servlet-name>
		<url-pattern>*.action</url-pattern>
	</servlet-mapping>
</web-app>

前端项目素材

https://pan.baidu.com/s/1FCBiO5r2cksg_aEiTPCeAQ.
提取码:32u9

前端项目源代码

https://pan.baidu.com/s/11mi5ONv36LvYZap5Mpzwqw
提取码:yxbr

后端项目素材

https://pan.baidu.com/s/1oKTjwSTrAhs10XPl6kdo9Q.
提取码:2j2h

后端项目源代码

https://pan.baidu.com/s/117n4K2-nnEt-ro8RsdQlZA.
提取码:tc66

项目环境

开发环境
java的jdk:jdk1.8.0_66
java的开发工具:eclipse(eclipse-photon)
数据库:MySQL Server 5.1
Web容器:apache-tomcat-8.5.32
MySQL可视化工具:Navicat 8.0 Lite MySQL

1、个人车辆融资类(债权转让)-车辆拥有人即借款人向资管公司借款,资管公司放款后再通过收益权转让融资,然后进行回购(平台推出xxx保障计划,类似积木盒子)/或由担保公司担保 (1)车辆抵押借款 (2)车辆质押借款 2、个人车辆融资类(直接融资)-车辆拥有人即借款人通过xx公司进行融资,并由担保公司担保/或平台推出xxx保障计划,保障借款人利益。 (1)车辆抵押借款 (2)车辆质押借款 3、经销商库存车辆融资类(债权转让)-二手车经销商将库存车辆以质押方式向资管公司借款,资管公司放款后再通过收益权转让融资,然后回购(平台推出xxx保障计划,类似积木盒子)/或由担保公司担保 (1)车辆质押借款 4、经销商库存车辆融资类(直接融资)-二手车经销商即借款人将库存车辆以质押方式通过理财范进行融资,并由担保公司担保/或平台推出xxx保障计划,保障借款人利益。 (1)车辆质押借款 5、二手车商采购车辆融资类-资管公司按照一定比例(如60%)为二手车商承担采购车款(资管公司与卖车人签买卖合同并收取全部车辆手续),再通过收益权转让融资,然后车辆卖掉后回款。资管公司回购/由担保公司担保 (1)车辆质押借款(资管公司与二手车交易平台合作,车质押给交易平台,资管公司收车手续) (2)车辆质押借款(车辆过户给资管公司,车手续在资管公司,车在二手车经销商) (3)车辆监管借款(车在二手车经销商,车手续在资管公司,要求二手车商且经销商资质优秀) 6、待售车辆快速融资类-二手车交易平台(或在4S店寄卖)的待售客户由资管公司预付销售款后再通过收益权转让融资,然后车辆卖掉后回款。资管公司回购/由担保公司担保 (1)车辆质押借款 7、个人银行贷款垫资类-资管公司为贷款客户垫资购车后再通过收益权转让融资,然后回购/由担保公司担保 8、二手车分期购车融资类-由资管公司为购车人提供分期贷款业务,再通过收益权转让融资,然后回购并由担保公司担保
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值