我创建了一个灰熊网络服务器,从tomcat运行我的球衣应用程序,以加快测试。
我是一个灰白色的初学者,但是通过网络查看我将一些代码行放在一起,以便在不到一个工作日内启动并运行一个灰熊的Web服务器:)
不幸的是,我的类在并发请求上遇到了一些麻烦,通常一个或多个在一个莫名其妙的 NullPointerException 中失败。
麻烦通常是在我刷新我的网页时,灰熊必须返回大约25个非缓存文件。这是注册例外:
9-set-2010 10.45.21 com.sun.grizzly.http.servlet.ServletAdapter doService
GRAVE: service exception:
java.lang.NullPointerException
at com.sun.grizzly.http.servlet.FilterChainImpl.doFilter(FilterChainImpl.java:178)
at com.sun.grizzly.http.servlet.FilterChainImpl.invokeFilterChain(FilterChainImpl.java:139)
at com.sun.grizzly.http.servlet.ServletAdapter.doService(ServletAdapter.java:376)
at com.sun.grizzly.http.servlet.ServletAdapter.service(ServletAdapter.java:324)
.....
静态文件是从我的类中提供的,但是日志告诉我,这是正常的,当我在tomcat下使用应用程序时,一切都很好。 我真的不知道如何解决这个问题。
这是我从互联网创建/复制到启动项目的代码:
public class LaunchApp {
/** Find in internet, used to use argument port as default, only if there is no JERSEY_HTTP_PORT env port enabled*/
private static int getPort(int defaultPort) {
String port = System.getenv("JERSEY_HTTP_PORT");
if (null != port) {
try {
return Integer.parseInt(port);
} catch (NumberFormatException e) {
}
}
return defaultPort;
}
private static URI getBaseURI() {
return UriBuilder.fromUri("http://localhost/").port(getPort(8080)).build();
}
public static final URI BASE_URI = getBaseURI();
protected static GrizzlyWebServer startServer() throws IOException {
final String rootFolder = "/Users/davide/dev/my-project/src/main/webapp";
GrizzlyWebServer ws = new GrizzlyWebServer("/Users/davide/dev/my-project/src/main/webapp");
try{
ServletAdapter adapter = new ServletAdapter();
adapter.addContextParameter( "contextConfigLocation","classpath:applicationContext.xml" );
adapter.addServletListener("org.springframework.web.context.ContextLoaderListener");
adapter.addServletListener("org.springframework.web.context.request.RequestContextListener");
adapter.addInitParameter( "com.sun.jersey.config.property.packages", "it.treis.zero.web.rest");
adapter.addInitParameter( "com.sun.jersey.spi.container.ContainerRequestFilters","com.sun.jersey.api.container.filter.LoggingFilter");
adapter.addInitParameter( "com.sun.jersey.spi.container.ContainerResponseFilters","com.sun.jersey.api.container.filter.LoggingFilter");
adapter.setProperty( "load-on-startup", 1 );
adapter.setServletInstance( new SpringServlet() );
adapter.setRootFolder(rootFolder);
// Add Open Session In View Hibernate Filter.
adapter.addFilter(new org.springframework.orm.hibernate3.support.OpenSessionInViewFilter(), "openSessionInViewFilter", null);
ws.addGrizzlyAdapter(adapter);
ws.start();
} catch(IOException ex){
ex.printStackTrace();
}
return ws;
}
public static void main(String[] args) throws IOException {
System.out.println("Starting Jersey");
GrizzlyWebServer ws = startServer();
System.out.println("Jersey rightly started, press any key to shutdown");
System.in.read();
ws.stop();
System.exit(0);
}
}
任何建议都表示赞赏。
Ciao,Davide。
答案 0 :(得分:0)
这是由于Grizzly中的一个错误,FilterChainImpl的实现不是线程安全的。这个问题已在此处报告:https://grizzly.dev.java.net/issues/show_bug.cgi?id=819,并在几个月前得到修复。
更新到最新版本(1.9.21)解决了我的问题。
答案 1 :(得分:0)
你有
adapter.addInitParameter( "com.sun.jersey.spi.container.ContainerRequestFilters","com.sun.jersey.api.container.filter.LoggingFilter");
adapter.addInitParameter( "com.sun.jersey.spi.container.ContainerResponseFilters","com.sun.jersey.api.container.filter.LoggingFilter");
在您的配置中两次FYI ..不确定这是否是一个问题。
https://java.net/jira/browse/GRIZZLY-819
在上面的错误故障单中说明..如果您注册了多个过滤器,则会发生这种情况: “我建议至少使这个变量线程安全。 该问题仅显示是否注册了过滤器。“