nginx-java-parser
nginx-java-parser copied to clipboard
Nginx configuration parser based on ANTLR4 grammar
##in NgxBlock Class ,I have a new method to submit ```java public void getAllElementByBlock(NgxBlock ngxBlock,StringBuilder stringBuilder){ iterator = ngxBlock.iterator(); while(iterator.hasNext()){ NgxEntry ngxEntry = iterator.next(); if(ngxEntry instanceof NgxBlock){ NgxBlock block =...
Thank you for a tool that is a great step up from simply processing the nginx.conf file using Jav split() and regex tools! For anyone looking to build the code...
this fixes my problem in #11
is this feature already supported or not? i want to dynamic config stream block just like http block, but i did't find any method to add a new stream block...
I'm parsing a bunch of real world nginx configs and am encountering parsing failure if a character group in a location contains single and/or double quotes as characters. Probably they...
**this is the source config:**  **following is the result after I called dumper.dump():**  **we can see the result is confusing completely. this is my code:** 
the read line shows "extraneous input 'break' expecting {'location', 'if', '}', 'rewrite', Value, Comment}", though there is a read line, the result is correct. I don't understand why this line...
Bumps [junit](https://github.com/junit-team/junit4) from 4.11 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
merge #14 fix #11 fix comment`#` pass semicolon test
While using the jar , I am facing the following issue . java.io.NotSerializableException: com.github.odiszapc.nginxparser.NgxParam : The EJB specification restricts remote interfaces to only serializable data types. This can be disabled...