当前位置: 首页 > news >正文

张店制作网站公司网站如何备案

张店制作网站,公司网站如何备案,开发app的资金需求,郴州网红打卡餐厅静态语言和动态语言的在相互吸收对方的优秀特性#xff0c;取人之长补己之短。脚本引擎和动态编译就是其中一个关键特性#xff0c;扩展了Java的能力边界。这一篇我们主要讲两个东西: ScriptEngine#xff0c;执行脚本语言代码#xff0c;如JavaScript、Groovy JavaCompile…静态语言和动态语言的在相互吸收对方的优秀特性取人之长补己之短。脚本引擎和动态编译就是其中一个关键特性扩展了Java的能力边界。这一篇我们主要讲两个东西: ScriptEngine执行脚本语言代码如JavaScript、Groovy JavaCompiler动态编译Java代码加载Class对象并使用 1. 脚本引擎 1. 获取引擎 Java通过ScriptEngine接口提供脚本引擎的支持。在ScriptEngineManager里通过Java SPI加载所有的ScriptEngine的实现。在Java 17中没有自带任何ScriptEngine实现从侧面反映其实ScriptEngine并不是一个主流或官方推荐的操作。下面的代码能够获取当前环境下支持的所有脚本引擎。 ScriptEngineManager manager new ScriptEngineManager(); ListScriptEngineFactory factoryList manager.getEngineFactories(); System.out.println(factoryList.size()); // 默认size 0需要自己引用ScriptEngine的实现factoryList.forEach(x - {System.out.println(x.getEngineName());System.out.println(x.getNames());System.out.println(x.getMimeTypes());System.out.println(x.getExtensions()); }); OpenJDK一个JavaScript的脚本引擎: nashorn要使用它需要引入Maven依赖Maven依赖如下: dependencygroupIdorg.openjdk.nashorn/groupIdartifactIdnashorn-core/artifactIdversion15.4/version /dependency引入依赖后重新执行获取所有可用的脚本引擎代码我们能看到如下输出这里主要关心的是ScriptEngine的getNames、getMimeTypes、getExtensions这3个方法的输出 对应这三种输出我们可以通过ScriptEngineManager中的三个方法以输出值的一个元素为入参获取对应的ScriptEngine对象代码如下 ScriptEngine engine manager.getEngineByName(nashorn);engine manager.getEngineByMimeType(application/javascript); engine manager.getEngineByExtension(js); 这里我们提供一个工具方法用于获取ScriptEngine供后续测试使用本文中我们只会使用到nashorn脚本引擎 private static ScriptEngine getEngineByName(String name) {ScriptEngineManager manager new ScriptEngineManager();return manager.getEngineByName(name); } 2. 简单脚本 拿到ScriptEngine对象后我们就能用它执行脚本了。下面是一个极简的例子对两个数个数字1和2求和返回结果3 private static void basicEval() throws ScriptException {ScriptEngine engine getEngineByName(javascript);Integer i (Integer) engine.eval( 1 2);System.out.println(i.getClass().getSimpleName() : i); // 输出: Integer: 3 } 这样执行脚本的话每次都需要我们生成完整的脚本如果逻辑完全相同只是其中部分字段值不同我们能否复用之前的代码呢ScriptEngine支持在脚本内使用外部定义的变量有2种方式定义变量: 引擎变量同一个ScriptEngine实例下共享变量 局部变量同一个Bindings实例下共享变量 我们来看一个引擎变量的例子调用ScriptEngine.put能设置一个变量的值并在脚本内使用。这里有一点陷阱是使用变量后eval方法返回的类型变成了Double类型。 private static void engineBindEval() throws ScriptException {ScriptEngine engine getEngineByName(javascript);engine.put(a, Integer.valueOf(1));Object i engine.eval( 1 2);System.out.println(i.getClass().getSimpleName() : i); // 返回Integeri engine.eval( a 2);System.out.println(i.getClass().getSimpleName() : i); // 返回Double } 引擎变量是全局的更常用的场景是局部变量Bindings类提供了局部变量的支持不同Bindings内定义的变量互不干扰 private static void bindEval() throws ScriptException {ScriptEngine engine getEngineByName(javascript);Bindings scope engine.createBindings(); // 局部变量a1scope.put(a, 1);Bindings anotherScope engine.createBindings(); // 局部变量a2anotherScope.put(a, 2);i engine.eval(a 2, scope);System.out.println(i.getClass().getSimpleName() : i); // a1返回3i engine.eval(a 2, anotherScope);System.out.println(i.getClass().getSimpleName() : i); // a2返回4 } 3. 函数调用 通过在脚本内使用变量使用不同的变量值确实支持了脚本的部分逻辑复用。对于复杂的逻辑可能需要定义多个函数判断和组合不同的函数来实现。ScriptEngine提供了函数调用的支持可以事先定义函数后续反复调用这个函数。来看个实例我们定义sum函数实现了两个入参a、b的操作。 private static void callFunction() throws ScriptException, NoSuchMethodException {ScriptEngine engine getEngineByName(javascript);engine.eval(function sum(a,b) {return a b; });Object r ((Invocable) engine).invokeFunction(sum, hello, world);System.out.println(r.getClass().getSimpleName() : r);r ((Invocable) engine).invokeFunction(sum, 1, 2);System.out.println(r.getClass().getSimpleName() : r); } 4. 方法调用 很多脚本语言也支持面向对象的编程比如JavaScript通过prototype能支持对象方法的定义。下面的例子我们定义了一个Rectangle类支持方法volume传入一个高(height)配合Rectangle计算体积 private static void callMethod() throws ScriptException, NoSuchMethodException {ScriptEngine engine getEngineByName(javascript);engine.eval(function Rectangle(width,length) {this.widthwidth;this.lengthlength;});engine.eval(Rectangle.prototype.volume function(height) {return this.width * this.length * height;}); // 定义一个Rectangle类Object rectangle engine.eval(new Rectangle(2,3)); // 创建一个Rectangle实例System.out.println(rectangle.getClass().getSimpleName() : rectangle);ScriptObjectMirror mirror (ScriptObjectMirror) rectangle;System.out.println(mirror, width: mirror.get(width) , length: mirror.get(length)); // 通过ScriptObjectMirror读取字段Object volume ((Invocable) engine).invokeMethod(rectangle, volume, 4); // 调用实例的方法System.out.println(volume.getClass().getSimpleName() : volume); } 5. 接口调用 通过方法调用、函数调用我们已经能复用代码了但是对于使用者来说还必须使用脚本引擎的API。通过Invocable.getInterface()我们能拿到一个接口的实例对使用者来说只需要关系这个接口即可。Invocable.getInterface()同样也支持两种形式函数调用和方法调用。下面是一个函数调用的例子Invocable.getInterface的入参直接是一个Class对象 public static interface NumericFunction {public int sum(int a, int b);public int multiply(int a, int b); }private static void callInterface() throws ScriptException, NoSuchMethodException {ScriptEngine engine getEngineByName(javascript);engine.eval(function sum(a,b) { return a b; });engine.eval(function multiply(a,b) { return a * b; });NumericFunction numeric ((Invocable) engine).getInterface(NumericFunction.class); // 获取NumericFunction的实例int sum numeric.sum(1, 2);System.out.println(sum: sum);int product numeric.multiply(2, 3);System.out.println(product: product); } 如果是方法调用需要在Invocable.getInterface中额外传入一个隐式参数(Java里的this) public static interface Numeric {public int sum(int b);public int multiply(int b); }private static void callInterfaceMethod() throws ScriptException, NoSuchMethodException {ScriptEngine engine getEngineByName(javascript);engine.eval(function Numeric(a) {this.num a;});engine.eval(Numeric.prototype.sum function(b) { return this.num b; });engine.eval(Numeric.prototype.multiply function(b) { return this.num * b; });Object num engine.eval(new Numeric(1)); Numeric numeric ((Invocable) engine).getInterface(num, Numeric.class);// 方法调用的隐式参数: thisnumint sum numeric.sum(2);System.out.println(sum: sum);int product numeric.multiply(3);System.out.println(product: product); } 6. 编译脚本 到现在ScriptEngine已经够好用了我们来看看它的执行效率。对比Java原生代码、脚本引擎、编译脚本执行相同的逻辑来对比差异。我们先准备测试环境预定义ScriptEngine、CompiledScript private static ScriptEngine engine getEngineByName(nashorn); private static Bindings params engine.createBindings(); private static CompiledScript script;static {try {script ((Compilable) engine).compile(ab);} catch (Exception e) {} } private static volatile Object result; 然后定义一个模板方法(abTest)生成100w个数字执行BiFunction操作赋值给result(避免编译器优化)来看看响应时间 private static void abTest(BiFunctionInteger, Integer, Object func) throws ScriptException {Instant now Instant.now();IntStream.range(0, 100_0000).forEach(i - {result func.apply(i, i 1);});Instant finish Instant.now();System.out.println(duration: Duration.between(now, finish).toMillis()); } 首先我们使用原生Java来执行求和操作作为基准测试代码如下耗时17ms abTest((Integer i, Integer j) - i j); 然后使用ScriptEngine.eval来执行相同的求和操作代码如下耗时2175ms private static Object eval(Integer a, Integer b) {params.put(a, a);params.put(b, b);try {return engine.eval(ab, params);} catch (ScriptException e) {throw new RuntimeException(e);} } // 测试代码 abTest(TestSplit::eval); 然后使用事先编译的脚本CompiledScript做求和操作代码如下耗时263ms private static Object evalCompiled(Integer a, Integer b) {params.put(a, a);params.put(b, b);try {return script.eval(params);} catch (ScriptException e) {throw new RuntimeException(e);} } // 测试代码 abTest(TestSplit::evalCompiled); 可以看到原生Java的速度要变脚本引擎快将近100倍使用编译后脚本的速度是为编译版本的10倍。应该说ScriptEngine对性能是有明显的影响的如无必要尽量不要使用脚本引擎。 2. 在线编译 上一节说到使用ScriptEngine对性能有负面的影响而且使用脚本我们需要额外的学习脚本语法。Java提供了JavaCompiler支持动态的编译和执行Java代码正好能解决上述两个问题。 1. 编译文件 通过JavaCompiler可以编译本地文件下面是一个简单的示例值得注意的是如果使用文件的相对路径是当前进程的工作目录出发的通过Path.of()能拿到进程的工作目录 private static void testCompileFile() throws UnsupportedEncodingException {Path path Path.of();System.out.println(path.toAbsolutePath()); // 打印工作目录本地文件的相对路径是从工作目录出发的JavaCompiler compiler ToolProvider.getSystemJavaCompiler();ByteArrayOutputStream os new ByteArrayOutputStream();int result compiler.run(null, os, os, src/main/java/com/keyniu/compiler/Demo.java);System.out.println(compileResult: result ,message: new String(os.toByteArray(), utf-8)); } 如果编译成功会在.java文件所在目录生成对应的.class文件。JavaCompiler.run返回值0表示编译成功否则都是编译失败支持4个入参分别如下: 参数 说明 InputStream in JavaCompiler不接受输入所以这个实参永远是null OutputStream out 标准输出流打印编译的过程信息 OutputStream err 错误输出流打印编译错误信息 String...arguments 运行时参数使用javac命令时提供的参数 2. 错误信息 调用JavaCompiler.run能通过输出流打印编译的进展和错误信息然而这些信息适合于人类阅读并不适合程序分析。CompilationTask增强了JavaCompiler的能力支持调用者提供DiagnosticListener实例在编译发生错误时将错误信息传递给report方法调用report方法的入参是一个Diagnostic对象通过Diagnostic对象能取到错误信息、错误代码、错误发生的行和列 private static class MyDiagnostic implements DiagnosticListener {public void report(Diagnostic d) {System.out.println(d.getKind());System.out.println(d.getMessage(Locale.getDefault()));System.out.println(d.getCode());System.out.println(d.getLineNumber());System.out.println(d.getColumnNumber());} }// 使用CompileTask编译支持内存文件、错误处理 private static void testCompileTask() {JavaCompiler compiler ToolProvider.getSystemJavaCompiler();StandardJavaFileManager fileManager compiler.getStandardFileManager(new MyDiagnostic(), null, null);Iterable? extends JavaFileObject sources fileManager.getJavaFileObjectsFromStrings(List.of(src/main/java/com/keyniu/compiler/Demo.java));JavaCompiler.CompilationTask task compiler.getTask(null, null, new MyDiagnostic(), List.of(), null, sources);Boolean success task.call();System.out.println(compile success: success); } Java提供了DiagnosticListener的内置实现类DiagnosticCollectorDiagnosticController会收集所有的Diagnostic对象供后续分析处理 private static void testUseDiagnosticCollector() {DiagnosticCollectorJavaFileObject collector new DiagnosticCollector();JavaCompiler compiler ToolProvider.getSystemJavaCompiler();StandardJavaFileManager fileManager compiler.getStandardFileManager(collector, null, null);Iterable? extends JavaFileObject sources fileManager.getJavaFileObjectsFromStrings(List.of(src/main/java/com/keyniu/compiler/Demo1.java));JavaCompiler.CompilationTask task compiler.getTask(null, null, collector, List.of(), null, sources);Boolean success task.call();System.out.println(compile success: success);for (Diagnostic? extends JavaFileObject d : collector.getDiagnostics()) { // 遍历错误信息System.out.println(d);} } 3. 动态代码 如果只能编译本地文件的话JavaCompiler对应用开发者来价值不大通过程序调用javac命令能达到类似效果。如果能编译内存中的代码的话想象空间就大了。通过实现自己的JavaFileObject我们能让JavaCompiler支持编译存储在内存中(比如String)中的代码。我们来看一个简单的JavaFileObject覆写getCharContent方法返回类的代码。 private static class JavaCodeInString extends SimpleJavaFileObject {private String code;public JavaCodeInString(String name, String code) {super(URI.create(string:/// name.replace(., /) .java), Kind.SOURCE);this.code code;}Overridepublic CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException {return this.code;} } 剩下来要做的就是在CompilationTask中使用这个JavaFileObject实现。我们将代码放到局部变量code中创建JavaCodeInString对象并传递给CompilationTask.run方法的sources参数 private static void testCodeInString() {String code package com.keyniu.compiler;public class Demo {private static final int VALUE 10;public static void main(String[] args) {System.out.println(VALUE);}};List? extends JavaFileObject sources List.of(new JavaCodeInString(com.keyniu.compiler.Demo, code)); // 字符串中的代码DiagnosticCollectorJavaFileObject collector new DiagnosticCollector();JavaCompiler compiler ToolProvider.getSystemJavaCompiler();StandardJavaFileManager fileManager compiler.getStandardFileManager(collector, null, null);JavaCompiler.CompilationTask task compiler.getTask(null, null, collector, List.of(), null, sources);Boolean success task.call();System.out.println(compile success: success); } 4. 字节码数组 上一节中我们做到了编译保存在String中的代码而编译结果仍然会写入到.class文件。我们可以将.class文件放入到classpath的路径中使用时就能通过Class.forName来加载它。其实还有一个选择将编译后的字节码直接放在内存里然后使用Class.define获取对应的Class实例。通过定义一个JavaFileObject覆写openOutputStream方法能通过这个输出流接受编译后的字节码 public static class ByteCodeInMemory extends SimpleJavaFileObject {private ByteArrayOutputStream bos;public ByteCodeInMemory(String name) {super(URI.create(bytes:/// name.replace(., /) .class), Kind.CLASS);}public byte[] getCode() {return bos.toByteArray();}Overridepublic OutputStream openOutputStream() throws IOException {bos new ByteArrayOutputStream();return bos;} } 通过覆写JavaFileManager的实现在getJavaFileForOutput时返回ByteCodeInMemory将这个自定义的JavaFileObject实现传递给框架使用 private static ListByteCodeInMemory testByteCodeInMemory() {String code package com.keyniu.compiler;public class Demo {private static final int VALUE 10;public static void main(String[] args) {System.out.println(VALUE);}};List? extends JavaFileObject sources List.of(new JavaCodeInString(com.keyniu.compiler.Demo, code));DiagnosticCollectorJavaFileObject collector new DiagnosticCollector();JavaCompiler compiler ToolProvider.getSystemJavaCompiler();ListByteCodeInMemory classes new ArrayList();StandardJavaFileManager fileManager compiler.getStandardFileManager(collector, null, null);JavaFileManager byteCodeInMemoryFileManager new ForwardingJavaFileManagerJavaFileManager(fileManager) {public JavaFileObject getJavaFileForOutput(Location location, String className, JavaFileObject.Kind kind, FileObject sibling) throws IOException {if (kind JavaFileObject.Kind.CLASS) { // 如果输出的是class使用ByteCodeInMemoryByteCodeInMemory outfile new ByteCodeInMemory(className);classes.add(outfile);return outfile;} else {return super.getJavaFileForOutput(location, className, kind, sibling);}}};JavaCompiler.CompilationTask task compiler.getTask(null, byteCodeInMemoryFileManager, collector, List.of(), null, sources);Boolean success task.call();System.out.println(compile success: success);System.out.println(classCount: classes.size());return classes; } 5. 加载Class 使用自定义个JavaFileObject类ByteCodeInMemory我们拿到了Java编译后的字节码只需要将它加载成Class对象接下来就可以正常的使用这个类。直接使用ClassLoader.defineClass就能根据字节码创建Class实例。为了这里动态加载的Class对象后续的更新和回收这里我们选择一个自定义ClassLoader。下面是一个极简的代码示例 public static class ByteCodeClassLoader extends ClassLoader {private ListByteCodeInMemory codes;public ByteCodeClassLoader(ListByteCodeInMemory codes) {this.codes codes;}public Class? findClass(String name) throws ClassNotFoundException {for (ByteCodeInMemory cl : codes) {if (cl.getName().equals(/ name.replace(., /) .class)) {byte[] bs cl.getCode();return defineClass(name, bs, 0, bs.length);}}throw new ClassNotFoundException(name);} } 接着要做的就是使用ClassLoader加载Class对象后续就可以像正常的Class对象一样使用了。 private static void testClassLoader(ListByteCodeInMemory bytecodes) throws ClassNotFoundException {ByteCodeClassLoader classLoader new ByteCodeClassLoader(bytecodes);Class? clazz classLoader.findClass(com.keyniu.compiler.Demo);Field[] fs clazz.getDeclaredFields();for (Field f : fs) {System.out.println(f.getName() : f.getType());} }6. 性能测试 现在我们使用JavaCompiler来创建一个第1.6做的性能测试的案例生成一个BiFunctionInteger,Integer,Object的实现类 public static BiFunctionInteger, Integer, Object getSumFunction() throws ClassNotFoundException, InstantiationException, IllegalAccessException {ListByteCodeInMemory bytecodes compileStringCode();ByteCodeClassLoader classLoader new ByteCodeClassLoader(bytecodes);Class? clazz classLoader.findClass(com.keyniu.stream.test.MyNativeSum);BiFunctionInteger, Integer, Object sum (BiFunctionInteger, Integer, Object) clazz.newInstance();return sum; }private static ListByteCodeInMemory compileStringCode() {String code package com.keyniu.stream.test;import java.util.function.BiFunction;public class MyNativeSum implements BiFunctionInteger, Integer, Object {Overridepublic Object apply(Integer i1, Integer i2) {return i1 i2;}};List? extends JavaFileObject sources List.of(new JavaCodeInString(com.keyniu.stream.test.MyNativeSum, code));DiagnosticCollectorJavaFileObject collector new DiagnosticCollector();JavaCompiler compiler ToolProvider.getSystemJavaCompiler();ListByteCodeInMemory classes new ArrayList();StandardJavaFileManager fileManager compiler.getStandardFileManager(collector, null, null);JavaFileManager byteCodeInMemoryFileManager new ForwardingJavaFileManagerJavaFileManager(fileManager) {public JavaFileObject getJavaFileForOutput(Location location, String className, JavaFileObject.Kind kind, FileObject sibling) throws IOException {if (kind JavaFileObject.Kind.CLASS) {ByteCodeInMemory outfile new ByteCodeInMemory(className);classes.add(outfile);return outfile;} else {return super.getJavaFileForOutput(location, className, kind, sibling);}}};JavaCompiler.CompilationTask task compiler.getTask(null, byteCodeInMemoryFileManager, collector, List.of(), null, sources);Boolean success task.call();return classes; }使用getSumFunction返回的BiFunctionInteger,Integer,Object的时间耗时22ms基本接近Java原生代码实现 A. 参考资料 1. Java实现可配置的逻辑
http://www.zqtcl.cn/news/661814/

相关文章:

  • 佛山网站建设定制杭州人防质监站网址
  • 什么网站可以做微官网定制小程序制作一个需要多少钱
  • 扒下来的网站怎么做修改什么样是权网站重高的
  • 淘宝客做网站链接潍坊网站建设wfzhy
  • 怎样做二维码链接到网站上做的比较好的美食网站有哪些
  • 自动化科技产品网站建设响应式博客wordpress
  • 个人建站如何赚钱男人的好看网
  • 门户网站建设管理工作作一手房用什么做网站
  • 网站建设优化服务案例三合一网站程序
  • 网站长尾词关于制作网站的方案
  • 做二手衣服的网站有哪些wordpress单本小说采集
  • 曲靖市建设局网站品牌营销咨询公司是做什么的
  • wordpress网站统计代码放哪个文件putty搭建wordpress
  • 桦南县建设局网站天坛装修公司口碑怎么样
  • 网站的建设求职简历网站开发与维护价格
  • 网站空间备份站长网站优点
  • 房产网站做那个比较好网页设计属于前端吗
  • 衡水企业网站建设费用html5网页设计教程
  • 用wp系统做网站网站有收录没排名
  • 网站源码程序下载ios开发软件
  • 设计好的网站什么是企业网站策划案
  • 北京网站建设亿玛酷适合5传奇网站装备动态图怎么做
  • 多平台网站设计实例3d效果图什么网站做的好
  • 58同城西安网站建设购物网站前端浮动特效怎么做
  • asp网站模板源码wordpress 画图插件
  • 免费网站建站 知乎伪原创嵌入网站
  • 2网站建设城乡住房建设网站
  • 游戏网站建设公司建设银行网站登陆二星是什么意思
  • 长春网站排名优化泉州网站建设方案服务
  • 教育培训机构加盟十大排名搜索引擎优化宝典