We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
您有教程如何使用它吗? http://localhost:8080/content
The text was updated successfully, but these errors were encountered:
你用springboot写个后台接口,端口是8080,路径:/content,其他语言的话,我不太熟悉。主要思路是开个web后台服务器,
Sorry, something went wrong.
@RestController public class CrawlerController { AtomicInteger count = new AtomicInteger(0); @RequestMapping(value="/content",method={RequestMethod.POST}) public void getContent(String content){ System.out.println(count.incrementAndGet()); System.out.println(content); } }
No branches or pull requests
您有教程如何使用它吗? http://localhost:8080/content
The text was updated successfully, but these errors were encountered: