Вопрос: Как создать самый простой сервлет?
Ответ:
- простое web приложение на java
- Java Example: How to upload file in JSP
- JSP - File Uploading
- Example of ServletContext in Java
- Servlet 3.0 – How to Override @WebServlet Mappings | Intertech Blog
Вопрос: Как получить POST-данные?
Ответ:
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String jsonValue = request.getParameter("jsonValue"); if (jsonValue != null && !jsonValue.isEmpty()) { JSONObject object = new JSONObject(jsonValue); //do whatever you need to do with JSON.... } }
...