Closed william-abel closed 4 years ago
从请求体里面拿就好了,参考https://github.com/monkeyWie/proxyee/blob/master/src/test/java/com/github/monkeywie/proxyee/InterceptFullRequestProxyServer.java
Debug 进入不了handelRequest 在哪个方法里拿参数?
你可能需要重写match
方法,匹配到的请求才会被拦截
你可能需要重写
match
方法,匹配到的请求才会被拦截
谢谢 已经获取到参数了 还有一个小问题 打包成jar java -jar 运行一直是 jar中没有主清单属性
你怎么打的jar包啊,要打成可运行的jar才行
你怎么打的jar包啊,要打成可运行的jar才行
通过maven 和 Idea build Artifacts 打包 都无法运行 未修改项目代码
这个项目本身就不是可运行jar包啊,要打包的话需要修改pom.xml
文件,示例
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<!-- 这里填要运行的类名 -->
<mainClass>lee.study.xxx.xxx</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
这个项目本身就不是可运行jar包啊,要打包的话需要修改
pom.xml
文件,示例<build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <appendAssemblyId>false</appendAssemblyId> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <!-- 这里填要运行的类名 --> <mainClass>lee.study.xxx.xxx</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>assembly</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> </plugins> </build>
你有其他联系方式吗 有些问题请教你
加我微信吧 liwei-8466
如何获取POST请求参数,例如下面图片中的Form Data的数据