nginx-java-parser icon indicating copy to clipboard operation
nginx-java-parser copied to clipboard

Nginx configuration parser based on ANTLR4 grammar

Results 22 nginx-java-parser issues
Sort by recently updated
recently updated
newest added

##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:** ![image](https://user-images.githubusercontent.com/22047888/112964054-8ba7ce00-917a-11eb-9d93-1a1a21b7007a.png) **following is the result after I called dumper.dump():** ![image](https://user-images.githubusercontent.com/22047888/112964158-a5e1ac00-917a-11eb-9a4f-e72ccebe1d22.png) **we can see the result is confusing completely. this is my code:** ![image](https://user-images.githubusercontent.com/22047888/112964271-c3af1100-917a-11eb-8990-fcafc86f31cb.png)

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...

dependencies

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...