26 lines
1012 B
Plaintext
26 lines
1012 B
Plaintext
|
|
[debug.server.host]
|
|||
|
|
// 这块,目前基本是写死这样的配置,不要修改
|
|||
|
|
vs.debug.host = http://vsstudio.teitui.com
|
|||
|
|
|
|||
|
|
[debug.proxy.custom]
|
|||
|
|
// 定义需要增强的classs,没有增加的class不记录堆栈
|
|||
|
|
// 一般明显不需要记录的class,配置成: class.name=false
|
|||
|
|
// 正则表述式支持,请注意书写
|
|||
|
|
// class.pattern = true 表示要增强记录堆栈的
|
|||
|
|
|
|||
|
|
// 自定义的增加的类
|
|||
|
|
|
|||
|
|
com.vs.entrance.controller.env.register.DebugEnvRegisterTask=false
|
|||
|
|
com.vs.common.util.rpc.pub.PublicInterfaceExecutor = true +[execute]
|
|||
|
|
com.vs.common.util.rpc.pub.PublicInterfaceFilter = true +[doFilter]
|
|||
|
|
org.springframework.http.converter.json.MappingJackson2HttpMessageConverter=true
|
|||
|
|
|
|||
|
|
com.vs.sqlmapper.core.SqlManagerImpl = true +[sqlWatcher]
|
|||
|
|
com.vs.common.util.rpc.RpcMethodExecutor = true
|
|||
|
|
|
|||
|
|
[debug.proxy.service]
|
|||
|
|
// 默认支持serivce下面的所有类,放到最后一行
|
|||
|
|
|
|||
|
|
.*?\.service[\.\w_]+ = true -[set*, get*]
|
|||
|
|
.*?\.controller[\.\w_]+ = true -[set*, get*]
|
|||
|
|
.*?\.hibernate[\.\w_]+ = false
|