请上传宽度大于 1200px,高度大于 164px 的封面图片
    调整图片尺寸与位置
    滚轮可以放大缩小图片尺寸,按住图片拖动可调整位置,多余的会自动被裁剪掉
取消
柿子树(uid:123716)
职业资格认证:尚未取得认证
maven开发插件pom.xml配置
<?xml version="1.0" encoding="UTF-8"?><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/xsd/maven-4.0.0.xsd"> <parent> <artifactId></artifactId> <groupId></groupId> <version>1.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>plugin-test</artifactId> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.test.skip>true</maven.test.skip> <maven.javadoc.skip>true</maven.javadoc.skip> <isEncrypt>true</isEncrypt> </properties> <build> <outputDirectory>${project.basedir}/classes/</outputDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version> <executions> <execution> <id>auto-clean</id> <phase>initialize</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>my.prepare-package</id> <phase>prepare-package</phase> <goals> <goal>run</goal> </goals> <configuration> <target if="${isEncrypt}"> <property name="compile_classpath" refid="maven.compile.classpath"/> <taskdef name="pretreatment" classname="com.fr.plugin.pack.PluginPretreatmentTask"> <classpath path="${env.JAVA_HOME}/lib/tools.jar"/> <!--suppress UnresolvedMavenProperty --> <classpath path="${compile_classpath}"/> </taskdef> <pretreatment baseDir="${basedir}"/> </target> </configuration> </execution> <execution> <id>my.package</id> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <xmlproperty file="plugin.xml" prefix="plugin_info"/> <!--suppress UnresolvedMavenProperty --> <property name="plugin_name" value="plugin-${plugin_info.plugin.id}-${plugin_info.plugin.version}"/> <!--suppress UnresolvedMavenProperty --> <property name="plugin_directory" value="${project.basedir}/../webroot/WEB-INF/plugins/${plugin_name}/"/> <!--suppress UnresolvedMavenProperty --> <property name="install_directory" value="${project.basedir}/../webroot/WEB-INF/plugins/installation_zips/${plugin_name}/"/> <!--suppress UnresolvedMavenProperty --> <jar destfile="${plugin_name}.jar" basedir="classes"/> <zip destfile="plugin_installation.zip"> <!--suppress UnresolvedMavenProperty --> <zipfileset dir="${project.basedir}" includes="${plugin_name}.jar"/> <zipfileset dir="${project.basedir}" includes="plugin.xml"/> <zipfileset dir="${project.basedir}/lib" includes="**/**"/> </zip> <!--suppress UnresolvedMavenProperty --> <copy todir="${plugin_directory}" overwrite="true"> <fileset dir="${project.basedir}" erroronmissingdir="false"> <!--suppress UnresolvedMavenProperty --> <include name="${plugin_name}.jar"/> </fileset> <fileset dir="${project.basedir}" erroronmissingdir="false"> <include name="plugin.xml"/> </fileset> <fileset dir="${project.basedir}/lib/" erroronmissingdir="false"> <include name="**/**"/> </fileset> </copy> <!--suppress UnresolvedMavenProperty --> <copy todir="${install_directory}" overwrite="true"> <fileset dir="${project.basedir}/" erroronmissingdir="false"> <include name="plugin_installation.zip"/> </fileset> </copy> <move file="classes" todir="${project.build.directory}"/> <move file="plugin_installation.zip" todir="${project.build.directory}"/> <!--suppress UnresolvedMavenProperty --> <move file="${plugin_name}.jar" todir="${project.build.directory}"/> </target> </configuration> </execution> </executions> </plugin> </plugins> </build></project>  
关于自定义校验错误提示的定位
自定义校验结束后,如果想要对错误提示信息定位的话,可以采取如下办法: List<VerifyResult> list = calculator.getAttribute(Verifier.KEY);list.add(new SimpleVerifyResult(Status.ERROR, msg, new String{"A1"})); 两种自定义校验类型都可以使用当然方法getType就可以返回Status.SUCCESS,以免混乱 V9、v10有效  
图表超级链接参数
图表超级连接中,自定义参数值为单元格时,取不到单元格值
框架图刷新bug
数据字典功能建议
excel导入填报出错
在excel增量导入和覆盖导入之前如果删除过行的话,导入后会出现空行。 141578 141577 141576
个人成就
内容被浏览22,942
加入社区6年256天
返回顶部