保存进度!

This commit is contained in:
Kane Wang 2022-12-15 17:34:57 +08:00
parent 5f174b312c
commit 234a3d9861
10 changed files with 80 additions and 10 deletions

View File

@ -1,3 +1,4 @@
{
"java.configuration.updateBuildConfiguration": "automatic"
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic"
}

View File

@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cpicxim</groupId>
<groupId>com.cpic.xim</groupId>
<artifactId>AdminSys</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>

View File

@ -0,0 +1,20 @@
/*
* @Author: Kane
* @Date: 2022-12-15 14:08:28
* @LastEditors: Kane
* @LastEditTime: 2022-12-15 15:27:53
* @FilePath: \AdminSys\src\main\java\com\cpicxim\myutils\account\CpicXIMStaffInfo.java
* @Description: 产险厦门分公司员工信息对象
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpic.xim.myutils.account;
public class CpicXIMStaffInfo
{
private String name;
private String code;
private String p13Code;
private String departmentCode;
private String departmentName;
}

View File

@ -8,7 +8,7 @@
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpicxim.myutils.account;
package com.cpic.xim.myutils.account;
public class P13AccountCheck
{

View File

@ -0,0 +1,16 @@
/*
* @Author: Kane
* @Date: 2022-12-15 16:19:39
* @LastEditors: Kane
* @LastEditTime: 2022-12-15 16:19:41
* @FilePath: \AdminSys\src\main\java\com\cpicxim\myutils\config\json\ConfigLoader.java
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpic.xim.myutils.config.json;
public class ConfigLoader
{
}

View File

@ -2,23 +2,31 @@
* @Author: Kane
* @Date: 2022-12-15 11:11:21
* @LastEditors: Kane
* @LastEditTime: 2022-12-15 11:36:35
* @LastEditTime: 2022-12-15 11:50:46
* @FilePath: \AdminSys\src\main\java\com\cpicxim\web\controllers\account\P13AccountCheckController.java
* @Description:
* @Description: P13账号验证用Controller
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpic.xim.web.controllers.account;
package com.cpicxim.web.controllers.account;
import java.io.IOException;
import java.nio.channels.IllegalSelectorException;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@RequestMapping( path = "/account")
public class P13AccountCheckController
{
/*****************************************************
*
*****************************************************/
@ResponseBody
@RequestMapping( path = "/p13-account-check.do")
public P13AccountCheckResult checkP13Account( String P13Account, String password )
throws IllegalSelectorException, IOException
{
P13AccountCheckResult result = new P13AccountCheckResult();

View File

@ -9,7 +9,7 @@
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpicxim.web.controllers.account;
package com.cpic.xim.web.controllers.account;
import com.fasterxml.jackson.annotation.*;;

View File

@ -8,7 +8,7 @@
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpicxim.web.filters;
package com.cpic.xim.web.filters;
import java.io.IOException;
import javax.servlet.Filter;

View File

@ -0,0 +1,25 @@
<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:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util" xmlns:jpa="http://www.springframework.org/schema/data/jpa" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">
<context:component-scan base-package="com.cpic.xim.web" />
<mvc:annotation-driven />
<mvc:default-servlet-handler />
<!-- <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean> -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="defaultEncoding" value="UTF-8" />
<property name="maxUploadSize" value="-1" />
</bean>
</beans>

View File

@ -17,7 +17,7 @@
<filter>
<filter-name>cros-filter</filter-name>
<filter-class>com.cpicxim.web.filters.cros.CrosFilter</filter-class>
<filter-class>com.cpic.xim.web.filters.cros.CrosFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>cros-filter</filter-name>