- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试在我的一个 servlet 中执行一些 jUnit 测试,但每当我尝试运行它时,我都会收到 ExceptionInInitializerError。我读到这个错误是由于异常引起的,发生在评估静态初始值设定项或静态变量初始值设定项期间。问题是,即使我试图修复它,我也可以。这就是我在这里写的原因:我的 servlet 代码如下:
public class AppServlet extends HttpServlet {
// <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
/**
* Handles the HTTP <code>GET</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
try {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
//obtenemos los valores de los campos del formulario.
String usr = request.getParameter("usrName");
String cp = request.getParameter("codigoPostal");
Gson gson = new Gson();
if (usr == null || cp == null || cp.length() != 5) {
Result r = new Result("KO", "No se introdujeron bien los datos");
String jsonString = gson.toJson(r);
out.println(jsonString);
return;
}
//procedemos a convertir el codigo postal en la ciudad usando geonames:
//para ello usaremos la api de geonames
String city = geoLocalize.localizeCity(cp);
//empezaremos con el codigo de depuración para ver donde podemos tener errores
if (city == null) {
Result r = new Result("KO", "No hay ciudad para dicho codigo postal");
String jsonString = gson.toJson(r);
out.println(jsonString);
return;
}
//comenzamos con las bases de datos
SQLconnection db = new SQLconnection();
//una vez creada la conexion deberemos hacer las insert en las tablas.
if (!db.checkUsr(usr)) {
if (db.insertUsr(usr)) {
int numCp = parseInt(cp);
if (!db.checkCP(numCp)) {
if (db.addCity(numCp, city)) {
Result r = new Result("OK", "Proceso terminado sin problemas");
String jsonString = gson.toJson(r);
out.println(jsonString);
return;
} else {
Result r = new Result("KO", "No se ha podido añadir la ciudad");
String jsonString = gson.toJson(r);
out.println(jsonString);
return;
}
} else {
Result r = new Result("OK", "Se ha añadido el usuario, el codigo postal ya estaba");
String jsonString = gson.toJson(r);
out.println(jsonString);
return;
}
} else {
Result r = new Result("KO", "No se ha podido añadir el usuario");
String jsonString = gson.toJson(r);
out.println(jsonString);
return;
}
} else {
Result r = new Result("KO", "El usuario ya existe en el sistema");
String jsonString = gson.toJson(r);
out.println(jsonString);
return;
}
} catch (IOException | NumberFormatException ex) {
Logger.getLogger(AppServlet.class.getName()).log(Level.SEVERE, null, ex);
} catch (Exception ex) {
Logger.getLogger(AppServlet.class.getName()).log(Level.SEVERE, null, ex);
}
}
我的 jUnit 测试代码如下:
public class AppServletTest extends TestCase {
HttpServletRequest request;
HttpServletResponse response;
AppServlet instance;
public AppServletTest(String testName) {
super(testName);
}
@Override
protected void setUp() throws Exception {
request = mock(HttpServletRequest.class);
response = mock(HttpServletResponse.class);
instance = new AppServlet();
super.setUp();
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
}
/**
* Test of doGet method, of class AppServlet.
*
* @throws java.lang.Exception
*/
public void testDoGet() throws Exception {
System.out.println("doGet");
//generamos los parametros y un .txt donde guardaremos la respuesta JSON
when(request.getParameter("usrName")).thenReturn("Javi");
when(request.getParameter("codigoPostal")).thenReturn("48991");
PrintWriter writer = new PrintWriter("resultadoPruebas.txt");
when(response.getWriter()).thenReturn(writer);
//mandamos la peticion al servlet
instance.doGet(request, response);
verify(request, atLeast(1)).getParameter("usrName"); // para verificar si se ha llamado a usrName
writer.flush(); // it may not have been flushed yet...
assertTrue(FileUtils.fileRead(new File("somefile.txt"), "UTF-8")
.contains("OK"));
}
这是完整的堆栈跟踪:
java.lang.ExceptionInInitializerError
at com.jbo.testapp.AppServletTest.setUp(AppServletTest.java:36)
at junit.framework.TestCase.runBare(TestCase.java:128)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:120)
at junit.framework.TestSuite.runTest(TestSuite.java:230)
at junit.framework.TestSuite.run(TestSuite.java:225)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:96)
at org.apache.maven.surefire.junit.JUnit3Provider.executeTestSet(JUnit3Provider.java:117)
at org.apache.maven.surefire.junit.JUnit3Provider.invoke(JUnit3Provider.java:94)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:164)
at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:110)
at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:175)
at
org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcessWhenForked(SurefireStarter.java:107)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:68)
Caused by: java.util.MissingResourceException: Can't find bundle for base name javax.servlet.LocalStrings, locale es_ES
at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:1564)
at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1387)
at java.util.ResourceBundle.getBundle(ResourceBundle.java:773)
at javax.servlet.GenericServlet.<clinit>(GenericServlet.java:95)
... 24 more
Caused by: java.util.MissingResourceException: Can't find bundle for base name javax.servlet.LocalStrings, locale es_ES
at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:1564)
at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1387)
at java.util.ResourceBundle.getBundle(ResourceBundle.java:773)
at javax.servlet.GenericServlet.<clinit>(GenericServlet.java:95)
... 24 more
希望大家帮帮我!提前谢谢你
最佳答案
Caused by: java.util.MissingResourceException: Can't find bundle for base name javax.servlet.LocalStrings, locale es_ES
这才是真正的错误。
您正在运行的测试缺少 servlet-api
依赖项。
如果您使用的是 Maven,请确保此依赖项在您的项目中:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
关于java.util.MissingResourceException : Can't find bundle for base name javax. servlet.LocalStrings,语言环境 es_ES,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31561603/
我在这个网站上发布的代码有这个问题 https://developers.google.com/drive/quickstart-cs是 Google Drive 快速入门的开发人员站点。我按照网站上
我正在尝试制作一个非常简单的 Kafka Producer,目前正在关注 producer example除了我的制作人没有分区程序类。 将所需文件导出到 jar 后,我将它们传输到我的 Linux
问题 在java中,我有一个“Util项目”,在进行单元测试时使用另一个“Mock项目”。 我的问题是“模拟项目”也使用“Util项目”来构建一些模拟对象。 当我使用 Maven 构建项目时,我无法构
据我所知,这些包已经存在很长时间了。但是,我从未见过它们的实际用法。而且这些包似乎不成熟,不再维护。如果是,为什么这些包现在存在? 最佳答案 包裹automata被 scala.xml.dtd 使用,
关闭。这个问题需要debugging details .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 1年前关闭。 Improve this question Co
在java.util.Collections中,有一个方法: public static void fill(List list, T obj) 用第二个参数指定的对象填充第一个参数指定的List。
我不明白它要我做什么。分配给 sentence正在工作: val sentences : java.util.List[CoreMap] = document.get(classOf[Sentence
在我的 React 应用程序中,我想使用一些实用程序。我见过两种不同的方法。第一个是,只是创建函数并将其导出。第二个是,创建一个 Util 类并导出一个对象,这样它就不能被实例化(静态类)。 clas
我有一个 util 类,它接受 String jwtToken 和 Key key 并使用 io.jsonwebtoken.jwts 解码 jwt。 但是,我无法对此进行测试。原因是,我无法模拟公钥并
我有使用目标命名空间的专有架构 xmlns:ax216="http://util.java/xsd" 这给我带来了从 java (java.util.xsd) 开始生成禁止的(由 Java 安全管理器
我正在阅读集合以查看 Javadocs 中的实现层次结构。 Collections声明为public class Collections extendds Object Collection声明为pu
我正在使用 Spring-boot 应用程序,我可以在其中连接 Azure 应用程序配置。但是当我尝试使用内容类型应用程序/JSON 读取值时出现错误。 我的Java类 @ConfigurationP
我正在使用 Spring-boot 应用程序,我可以在其中连接 Azure 应用程序配置。但是当我尝试使用内容类型应用程序/JSON 读取值时出现错误。 我的Java类 @ConfigurationP
我在使用格式说明符时遇到问题。这是否意味着我正在使用 %d? public static void main(String[] args) { double y, x; for (x =
鉴于此代码 import java.util.Iterator; private static List someList = new ArrayList(); public static void
我正在 HackerEarth 解决问题,我无法弄清楚为什么我的程序在命令行上正确运行并给出正确的结果,但在代码编辑器上运行时却给出 java.util.NoSuchElementException
我正在尝试使用以下代码使用对象列表列表中的数据填充tableModel readExcel.readSheet(0): TableModel tableModel = new DefaultTabl
java.util.Set 、 java.util.List 和其他 Collection 接口(interface)不可序列化。需要一个简单、直接的解决方案来在可序列化的 POJO 中使用它。 pu
我试图从 servlet 返回数据库搜索结果的 ArrayList 以显示在 jsp 页面上。 在servlet中设置arraylist作为请求的属性,并将请求转发到jsp页面。当我尝试在 jsp 页
我是android新手,最近我试图从firebase中提取数据到recyclerview/cardview中以垂直布局显示数据,它显示将Hashmap转换为Arraylist的错误,其中代码是:
我是一名优秀的程序员,十分优秀!