parent
fe430eb040
commit
124e90aae3
@ -0,0 +1,54 @@ |
|||||||
|
package com.bweb.controller; |
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject; |
||||||
|
import com.hai.common.exception.ErrorCode; |
||||||
|
import com.hai.common.exception.ErrorHelp; |
||||||
|
import com.hai.common.exception.SysCode; |
||||||
|
import com.hai.common.utils.MD5Util; |
||||||
|
import com.hai.common.utils.ResponseMsgUtil; |
||||||
|
import com.hai.config.TuanYouConfig; |
||||||
|
import com.hai.entity.SecUser; |
||||||
|
import com.hai.model.ResponseData; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import org.apache.commons.lang3.StringUtils; |
||||||
|
import org.slf4j.Logger; |
||||||
|
import org.slf4j.LoggerFactory; |
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.web.bind.annotation.RequestBody; |
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestMethod; |
||||||
|
import org.springframework.web.bind.annotation.ResponseBody; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author hurui |
||||||
|
* @version 1.0 |
||||||
|
* @ClassName TuanYouController |
||||||
|
* @description: TODO |
||||||
|
* @date 2021/9/17 17:52 |
||||||
|
*/ |
||||||
|
@Controller |
||||||
|
@RequestMapping(value = "/tuanYou") |
||||||
|
@Api(value="用户管理") |
||||||
|
public class TuanYouController { |
||||||
|
|
||||||
|
private static Logger log = LoggerFactory.getLogger(TuanYouController.class); |
||||||
|
|
||||||
|
@RequestMapping(value="/getTuanYouAccount",method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "查询团油账户余额") |
||||||
|
public ResponseData getTuanYouAccount() { |
||||||
|
try { |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(TuanYouConfig.queryCompanyAccountInfo2JD()); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("getUserByTelephone",e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,44 @@ |
|||||||
|
server: |
||||||
|
port: 9303 |
||||||
|
servlet: |
||||||
|
context-path: /schedule |
||||||
|
|
||||||
|
#配置是否为debug模式,debug模式下,不开启权限校验 |
||||||
|
debug: false |
||||||
|
|
||||||
|
#datasource数据源设置 |
||||||
|
spring: |
||||||
|
datasource: |
||||||
|
url: jdbc:mysql://139.159.177.244:3306/hsg_pre?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8 |
||||||
|
username: root |
||||||
|
password: HF123456. |
||||||
|
type: com.alibaba.druid.pool.DruidDataSource |
||||||
|
driver-class-name: com.mysql.jdbc.Driver |
||||||
|
filters: stat |
||||||
|
maxActive: 10 |
||||||
|
initialSize: 5 |
||||||
|
maxWait: 60000 |
||||||
|
minIdle: 5 |
||||||
|
timeBetweenEvictionRunsMillis: 60000 |
||||||
|
minEvictableIdleTimeMillis: 300000 |
||||||
|
validationQuery: select 'x' |
||||||
|
testWhileIdle: true |
||||||
|
testOnBorrow: false |
||||||
|
testOnReturn: false |
||||||
|
poolPreparedStatements: true |
||||||
|
maxOpenPreparedStatements: 20 |
||||||
|
#配置日期返回至前台为时间戳 |
||||||
|
jackson: |
||||||
|
serialization: |
||||||
|
write-dates-as-timestamps: true |
||||||
|
mybatis: |
||||||
|
mapperLocations: |
||||||
|
- classpath*:sqlmap*/*.xml |
||||||
|
type-aliases-package: |
||||||
|
org.springboot.sample.entity |
||||||
|
|
||||||
|
pagehelper: |
||||||
|
helperDialect: mysql |
||||||
|
reasonable: true |
||||||
|
supportMethodsArguments: true |
||||||
|
params: count=countSql |
@ -0,0 +1,72 @@ |
|||||||
|
<configuration> |
||||||
|
<!-- %m输出的信息,%p日志级别,%t线程名,%d日期,%c类的全名,,,, --> |
||||||
|
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> |
||||||
|
<encoder> |
||||||
|
<pattern>%d %p (%file:%line\)- %m%n</pattern> |
||||||
|
<charset>UTF-8</charset> |
||||||
|
</encoder> |
||||||
|
</appender> |
||||||
|
<appender name="baselog" |
||||||
|
class="ch.qos.logback.core.rolling.RollingFileAppender"> |
||||||
|
<File>log/base.log</File> |
||||||
|
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> |
||||||
|
<fileNamePattern>log/base.log.%d.%i</fileNamePattern> |
||||||
|
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP"> |
||||||
|
<!-- or whenever the file size reaches 64 MB --> |
||||||
|
<maxFileSize>64 MB</maxFileSize> |
||||||
|
</timeBasedFileNamingAndTriggeringPolicy> |
||||||
|
</rollingPolicy> |
||||||
|
<encoder> |
||||||
|
<pattern> |
||||||
|
%d %p (%file:%line\)- %m%n |
||||||
|
</pattern> |
||||||
|
<charset>UTF-8</charset> <!-- 此处设置字符集 --> |
||||||
|
</encoder> |
||||||
|
</appender> |
||||||
|
<appender name="daolog" |
||||||
|
class="ch.qos.logback.core.rolling.RollingFileAppender"> |
||||||
|
<File>log/dao.log</File> |
||||||
|
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> |
||||||
|
<fileNamePattern>log/dao.log.%d.%i</fileNamePattern> |
||||||
|
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP"> |
||||||
|
<!-- or whenever the file size reaches 64 MB --> |
||||||
|
<maxFileSize>64 MB</maxFileSize> |
||||||
|
</timeBasedFileNamingAndTriggeringPolicy> |
||||||
|
</rollingPolicy> |
||||||
|
<encoder> |
||||||
|
<pattern> |
||||||
|
%d %p (%file:%line\)- %m%n |
||||||
|
</pattern> |
||||||
|
<charset>UTF-8</charset> <!-- 此处设置字符集 --> |
||||||
|
</encoder> |
||||||
|
</appender> |
||||||
|
<appender name="errorlog" |
||||||
|
class="ch.qos.logback.core.rolling.RollingFileAppender"> |
||||||
|
<File>log/error.log</File> |
||||||
|
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> |
||||||
|
<fileNamePattern>log/error.log.%d.%i</fileNamePattern> |
||||||
|
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP"> |
||||||
|
<!-- or whenever the file size reaches 64 MB --> |
||||||
|
<maxFileSize>64 MB</maxFileSize> |
||||||
|
</timeBasedFileNamingAndTriggeringPolicy> |
||||||
|
</rollingPolicy> |
||||||
|
<encoder> |
||||||
|
<pattern> |
||||||
|
%d %p (%file:%line\)- %m%n |
||||||
|
</pattern> |
||||||
|
<charset>UTF-8</charset> <!-- 此处设置字符集 --> |
||||||
|
</encoder> |
||||||
|
</appender> |
||||||
|
<root level="DEBUG"> |
||||||
|
<appender-ref ref="STDOUT" /> |
||||||
|
</root> |
||||||
|
<logger name="com.hai" level="DEBUG"> |
||||||
|
<appender-ref ref="baselog" /> |
||||||
|
</logger> |
||||||
|
<logger name="com.hai.dao" level="DEBUG"> |
||||||
|
<appender-ref ref="daolog" /> |
||||||
|
</logger> |
||||||
|
<logger name="com.hai" level="ERROR"> |
||||||
|
<appender-ref ref="errorlog" /> |
||||||
|
</logger> |
||||||
|
</configuration> |
Loading…
Reference in new issue