接口定义-基本执行方法完成
This commit is contained in:
parent
515c92060b
commit
940acf3693
|
@ -9,9 +9,9 @@
|
|||
<!-- 此处指定生成针对MyBatis3的DAO -->
|
||||
<context id="mysql" targetRuntime="MyBatis3">
|
||||
<!-- 字段带`,解决列表跟关键字冲突问题 -->
|
||||
<property name="autoDefinitionKeywords" value="true" />
|
||||
<property name="beginningDefinitioner" value="`" />
|
||||
<property name="endingDefinitioner" value="`" />
|
||||
<property name="autoDelimitKeywords" value="true" />
|
||||
<property name="beginningDelimiter" value="`" />
|
||||
<property name="endingDelimiter" value="`" />
|
||||
|
||||
<plugin type="org.mybatis.generator.plugins.SerializablePlugin"/>
|
||||
<plugin type="org.mybatis.generator.plugins.UnmergeableXmlMappersPlugin" />
|
||||
|
|
|
@ -254,7 +254,7 @@ gui.quick_9=ViewResultsFullVisualizer
|
|||
# Remote hosts and RMI configuration
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
# Remote Hosts - comma definitioned
|
||||
# Remote Hosts - comma delimited
|
||||
remote_hosts=127.0.0.1
|
||||
#remote_hosts=localhost:1099,localhost:2010
|
||||
|
||||
|
@ -531,11 +531,11 @@ remote_hosts=127.0.0.1
|
|||
#jmeter.save.saveservice.timestamp_format=yyyy/MM/dd HH:mm:ss.SSS
|
||||
|
||||
# For use with Comma-separated value (CSV) files or other formats
|
||||
# where the fields' values are separated by specified definitioners.
|
||||
# where the fields' values are separated by specified delimiters.
|
||||
# Default:
|
||||
#jmeter.save.saveservice.default_definitioner=,
|
||||
#jmeter.save.saveservice.default_delimiter=,
|
||||
# For TAB, one can use:
|
||||
#jmeter.save.saveservice.default_definitioner=\t
|
||||
#jmeter.save.saveservice.default_delimiter=\t
|
||||
|
||||
# Only applies to CSV format files:
|
||||
# Print field names as first line in CSV
|
||||
|
@ -968,15 +968,15 @@ beanshell.server.file=../extras/startup.bsh
|
|||
# CSVRead configuration
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
# CSVRead definitioner setting (default ",")
|
||||
# Make sure that there are no trailing spaces or tabs after the definitioner
|
||||
# characters, or these will be included in the list of valid definitioners
|
||||
#csvread.definitioner=,
|
||||
#csvread.definitioner=;
|
||||
#csvread.definitioner=!
|
||||
#csvread.definitioner=~
|
||||
# CSVRead delimiter setting (default ",")
|
||||
# Make sure that there are no trailing spaces or tabs after the delimiter
|
||||
# characters, or these will be included in the list of valid delimiters
|
||||
#csvread.delimiter=,
|
||||
#csvread.delimiter=;
|
||||
#csvread.delimiter=!
|
||||
#csvread.delimiter=~
|
||||
# The following line has a tab after the =
|
||||
#csvread.definitioner=
|
||||
#csvread.delimiter=
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
# __time() function configuration
|
||||
|
|
Loading…
Reference in New Issue