IDEA -- bug笔记
-
将 java 文件夹转换为 sourse 文件夹(蓝绿色)
-
jsp 文件中用到 ${pageContext.request.contextPath} 来进行页面跳转时,网页中的 url 不正确
解决方法:
在 page 中加入 isELIgnored=“false”
-
test 文件夹下的测试代码运行报错 java.lang.NullPointerException: inStream parameter is null
解决方法:将 resources 资源文件夹中 druid.properties 复制到升成的 target 文件夹中的 classes 文件中。
-
Servlet 网页中文乱码(问号)
在 BaseServlet.java 的 doGet() 第一行插入 resp.setContentType(“text/html;charset=utf-8”);
public class BaseServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) {
resp.setContentType("text/html;charset=utf-8");
try {
String methodName = req.getParameter("methodName");
Class c = this.getClass();
Method method = c.getMethod(methodName, HttpServletRequest.class, HttpServletResponse.class);
method.invoke(this, req, resp);
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doGet(req, resp);
}
}
- 使用 SimplePropertyPreFilter 时报错
将 fastjson 版本改为 1.2.35
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.35</version>
</dependency>