Examples of parseExpression()


Examples of org.springframework.expression.ExpressionParser.parseExpression()

    assertThat(parser.parseExpression("path(dateFormat('yyyy'),dateFormat('MM'))").getValue(context, message, String.class), is(nowYYYYMM));
    assertThat(parser.parseExpression("path('yyyy', 'MM')").getValue(context, message, String.class), is("yyyy/MM"));
    assertThat(parser.parseExpression("path('yyyy', 'MM', payload.substring(0,3))").getValue(context, message, String.class), is("yyyy/MM/jee"));
    assertThat(parser.parseExpression("dateFormat('yyyy') + '/' + dateFormat('MM')").getValue(context, message, String.class), is(nowYYYYMM));
    assertThat(parser.parseExpression("headerkey").getValue(context, message, String.class), is("headervalue"));
    assertThat(parser.parseExpression("path(dateFormat('yyyy'), headerkey)").getValue(context, message, String.class), is(nowYYYY + "/headervalue"));
    assertThat(parser.parseExpression("headers.timestamp").getValue(context, message, Long.class), greaterThan(0l));
    assertThat(parser.parseExpression("headers[timestamp]").getValue(context, message, Long.class), greaterThan(0l));
    assertThat(parser.parseExpression("payload").getValue(context, message, String.class), is("jee"));
  }
View Full Code Here

Examples of org.springframework.expression.ExpressionParser.parseExpression()

    assertThat(parser.parseExpression("path('yyyy', 'MM')").getValue(context, message, String.class), is("yyyy/MM"));
    assertThat(parser.parseExpression("path('yyyy', 'MM', payload.substring(0,3))").getValue(context, message, String.class), is("yyyy/MM/jee"));
    assertThat(parser.parseExpression("dateFormat('yyyy') + '/' + dateFormat('MM')").getValue(context, message, String.class), is(nowYYYYMM));
    assertThat(parser.parseExpression("headerkey").getValue(context, message, String.class), is("headervalue"));
    assertThat(parser.parseExpression("path(dateFormat('yyyy'), headerkey)").getValue(context, message, String.class), is(nowYYYY + "/headervalue"));
    assertThat(parser.parseExpression("headers.timestamp").getValue(context, message, Long.class), greaterThan(0l));
    assertThat(parser.parseExpression("headers[timestamp]").getValue(context, message, Long.class), greaterThan(0l));
    assertThat(parser.parseExpression("payload").getValue(context, message, String.class), is("jee"));
  }

  @Test
View Full Code Here

Examples of org.springframework.expression.ExpressionParser.parseExpression()

    assertThat(parser.parseExpression("path('yyyy', 'MM', payload.substring(0,3))").getValue(context, message, String.class), is("yyyy/MM/jee"));
    assertThat(parser.parseExpression("dateFormat('yyyy') + '/' + dateFormat('MM')").getValue(context, message, String.class), is(nowYYYYMM));
    assertThat(parser.parseExpression("headerkey").getValue(context, message, String.class), is("headervalue"));
    assertThat(parser.parseExpression("path(dateFormat('yyyy'), headerkey)").getValue(context, message, String.class), is(nowYYYY + "/headervalue"));
    assertThat(parser.parseExpression("headers.timestamp").getValue(context, message, Long.class), greaterThan(0l));
    assertThat(parser.parseExpression("headers[timestamp]").getValue(context, message, Long.class), greaterThan(0l));
    assertThat(parser.parseExpression("payload").getValue(context, message, String.class), is("jee"));
  }

  @Test
  public void testWrapper() {
View Full Code Here

Examples of org.springframework.expression.ExpressionParser.parseExpression()

    assertThat(parser.parseExpression("dateFormat('yyyy') + '/' + dateFormat('MM')").getValue(context, message, String.class), is(nowYYYYMM));
    assertThat(parser.parseExpression("headerkey").getValue(context, message, String.class), is("headervalue"));
    assertThat(parser.parseExpression("path(dateFormat('yyyy'), headerkey)").getValue(context, message, String.class), is(nowYYYY + "/headervalue"));
    assertThat(parser.parseExpression("headers.timestamp").getValue(context, message, Long.class), greaterThan(0l));
    assertThat(parser.parseExpression("headers[timestamp]").getValue(context, message, Long.class), greaterThan(0l));
    assertThat(parser.parseExpression("payload").getValue(context, message, String.class), is("jee"));
  }

  @Test
  public void testWrapper() {
    Map<String, Object> headers = new HashMap<String, Object>();
View Full Code Here

Examples of org.springframework.expression.spel.standard.SpelExpressionParser.parseExpression()

        Map<String, Object> modelEntry = (Map<String, Object>) entry.getValue();
        String name = entry.getKey();
        String expr = (String) (modelEntry.containsKey("jread") ? modelEntry.get("jread") : modelEntry
            .get("jbind"));
        if (expr != null) {
          Object value = parser.parseExpression(expr).getValue(val);
          m.put(name, value);
        }
      }
      d.add(m);
    }
View Full Code Here

Examples of org.springframework.expression.spel.standard.SpelExpressionParser.parseExpression()

    for (Map.Entry<String, Object> entry : model.entrySet()) {
      Map<String, Object> modelEntry = (Map<String, Object>) entry.getValue();
      String name = entry.getKey();
      String expr = (String) (modelEntry.containsKey("jread") ? modelEntry.get("jread") : modelEntry.get("jbind"));
      if (expr != null) {
        Object value = parser.parseExpression(expr).getValue(data);
        Map<String, Object> m = new HashMap<String, Object>();
        m.put("id", name);
        m.put("value", value);
        d.add(m);
      }
View Full Code Here

Examples of org.springframework.expression.spel.standard.SpelExpressionParser.parseExpression()

    StandardEvaluationContext context = new StandardEvaluationContext();
    context.setRootObject(new Object());
    context.addMethodResolver(new ConditionEvalMethodResolver());
    ExpressionParser parser = new SpelExpressionParser();

    Expression exp = parser.parseExpression("test('test') or paet(true)");
    System.out.println(exp.getValue(context));

  }

  @Test
View Full Code Here

Examples of org.springframework.expression.spel.standard.SpelExpressionParser.parseExpression()

  @Test
  public void test1() {
    System.out.println(new Date().toString());
    ExpressionParser parser = new SpelExpressionParser();
   
    Expression exp = parser.parseExpression("date");
    TestBean b = new TestBean();
    exp.setValue(b, "Sat Nov 20 10:52:05 CET 2010");

    System.out.println(b.getInn().getVal());
  }
View Full Code Here

Examples of org.springframework.expression.spel.standard.SpelExpressionParser.parseExpression()

    MessageExpressionMethods methods = new MessageExpressionMethods();
    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy/MM')"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy/MM', headers[timestamp])"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy/MM', timestamp)"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy/MM', T(java.lang.System).currentTimeMillis())"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("path(dateFormat('yyyy'),dateFormat('MM'))"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("path('yyyy', 'MM')"), message, String.class), is("yyyy/MM"));
    assertThat(methods.getValue(parser.parseExpression("path('yyyy', 'MM', payload.substring(0,3))"), message, String.class), is("yyyy/MM/jee"));
    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy') + '/' + dateFormat('MM')"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("headerkey"), message, String.class), is("headervalue"));
    assertThat(methods.getValue(parser.parseExpression("path(dateFormat('yyyy'), headerkey)"), message, String.class), is(nowYYYY + "/headervalue"));
View Full Code Here

Examples of org.springframework.expression.spel.standard.SpelExpressionParser.parseExpression()

    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy/MM')"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy/MM', headers[timestamp])"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy/MM', timestamp)"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy/MM', T(java.lang.System).currentTimeMillis())"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("path(dateFormat('yyyy'),dateFormat('MM'))"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("path('yyyy', 'MM')"), message, String.class), is("yyyy/MM"));
    assertThat(methods.getValue(parser.parseExpression("path('yyyy', 'MM', payload.substring(0,3))"), message, String.class), is("yyyy/MM/jee"));
    assertThat(methods.getValue(parser.parseExpression("dateFormat('yyyy') + '/' + dateFormat('MM')"), message, String.class), is(nowYYYYMM));
    assertThat(methods.getValue(parser.parseExpression("headerkey"), message, String.class), is("headervalue"));
    assertThat(methods.getValue(parser.parseExpression("path(dateFormat('yyyy'), headerkey)"), message, String.class), is(nowYYYY + "/headervalue"));
    assertThat(methods.getValue(parser.parseExpression("headers.timestamp"), message, Long.class), greaterThan(0l));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.