Welcome to Hexo ! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub .
ok 你好 Quick Start 你好 Create a new post 1 $ hexo new "My New Post"
hello 可 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public Flux<RouteDefinition> getRouteDefinitions () { DiscoveryLocatorProperties properties = getProperties(); SpelExpressionParser parser = new SpelExpressionParser(); Expression includeExpr = parser.parseExpression(properties.getIncludeExpression()); Expression urlExpr = parser.parseExpression(properties.getUrlExpression()); Predicate<ServiceInstance> includePredicate; if (isIncludeAllExpression(properties.getIncludeExpression())) { includePredicate = instance -> true ; } else { includePredicate = instance -> { Boolean include = includeExpr.getValue(evaluationContext, instance, Boolean.class); if (include == null ) { return false ; } return include.booleanValue();
More info: Writing
Run server
More info: Server
Generate static files
More info: Generating
Deploy to remote sites
More info: Deployment