21

WebApplicationInitializerは、標準のweb.xmlファイルのかなりの部分(サーブレット、フィルター、リスナー)をプログラムで表す方法を提供します。

ただし、WebApplicationInitializerを使用してこれらの要素(セッションタイムアウト、エラーページ)を表す良い方法を見つけることができませんでした。これらの要素のweb.xmlを維持する必要がありますか?

<session-config>
    <session-timeout>30</session-timeout>
</session-config>

<error-page>
    <exception-type>java.lang.Exception</exception-type>
    <location>/uncaughtException</location>
</error-page>

<error-page>
    <error-code>404</error-code>
    <location>/resourceNotFound</location>
</error-page>
4

5 に答える 5

14

このトピックについて少し調べたところ、sessionTimeOutやエラーページなどの一部の構成では、web.xmlが必要であることがわかりました。

このリンクを見てください

これがお役に立てば幸いです。乾杯。

于 2012-05-30T10:57:35.930 に答える
6

スプリングブートを使用すると、非常に簡単です。

SpringServletContainerInitializerを拡張することで、SpringBootなしでも実行できると確信しています。それが特別に設計されたもののようです。

サーブレット3.0ServletContainerInitializerは、従来のweb.xmlベースのアプローチとは対照的に(または場合によっては組み合わせて)、SpringのWebApplicationInitializerSPIを使用したサーブレットコンテナのコー​​ドベースの構成をサポートするように設計されています。

サンプルコード(SpringBootServletInitializerを使用)

public class MyServletInitializer extends SpringBootServletInitializer {

    @Bean
    public EmbeddedServletContainerFactory servletContainer() {
        TomcatEmbeddedServletContainerFactory containerFactory = new TomcatEmbeddedServletContainerFactory(8080);

        // configure error pages
        containerFactory.getErrorPages().add(new ErrorPage(HttpStatus.UNAUTHORIZED, "/errors/401"));

        // configure session timeout
        containerFactory.setSessionTimeout(20);

        return containerFactory;
    }
}
于 2013-12-11T15:11:57.867 に答える
4

実際WebApplicationInitializerには直接提供していません。ただし、Java構成でsessointimeoutを設定する方法があります。

HttpSessionListner最初に作成する必要があります:

import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;

public class SessionListener implements HttpSessionListener {

    @Override
    public void sessionCreated(HttpSessionEvent se) {
        //here session will be invalidated by container within 30 mins 
        //if there isn't any activity by user
        se.getSession().setMaxInactiveInterval(1800);
    }

    @Override
    public void sessionDestroyed(HttpSessionEvent se) {
        System.out.println("Session destroyed");
    }
}

この後、このリスナーをサーブレットコンテキストに登録します。これはWebApplicationInitializer、メソッドの下で使用できます。onStartup

servletContext.addListener(SessionListener.class);
于 2015-06-18T07:22:26.573 に答える
1

BwithLoveコメントを拡張して、@ExceptionHandlerである例外およびコントローラーメソッドを使用して404エラーページを定義できます。

  1. DispatcherServletでNoHandlerFoundExceptionをスローできるようにします。
  2. コントローラで@ControllerAdvice@ExceptionHandlerを使用します。

WebAppInitializerクラス:

public class WebAppInitializer implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext container) {
    DispatcherServlet dispatcherServlet = new DispatcherServlet(getContext());
    dispatcherServlet.setThrowExceptionIfNoHandlerFound(true);
    ServletRegistration.Dynamic registration = container.addServlet("dispatcher", dispatcherServlet);
    registration.setLoadOnStartup(1);
    registration.addMapping("/");
}

private AnnotationConfigWebApplicationContext getContext() {
    AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext();
    context.setConfigLocation("com.my.config");
    context.scan("com.my.controllers");
    return context;
}
}

コントローラクラス:

@Controller
@ControllerAdvice
public class MainController {

    @RequestMapping(value = "/")
    public String whenStart() {
        return "index";
    }


    @ExceptionHandler(NoHandlerFoundException.class)
    @ResponseStatus(value = HttpStatus.NOT_FOUND)
    public String requestHandlingNoHandlerFound(HttpServletRequest req, NoHandlerFoundException ex) {
        return "error404";
    }
}

「error404」はJSPファイルです。

于 2015-08-25T17:58:56.977 に答える
1

web.xml内

<session-config>
    <session-timeout>3</session-timeout>
</session-config>-->
<listener>
    <listenerclass>

  </listener-class>
</listener>

リスナークラス

public class ProductBidRollBackListener implements HttpSessionListener {

 @Override
 public void sessionCreated(HttpSessionEvent httpSessionEvent) {
    //To change body of implemented methods use File | Settings | File Templates.

 }

 @Override
 public void sessionDestroyed(HttpSessionEvent httpSessionEvent) {
    HttpSession session=httpSessionEvent.getSession();
    WebApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(session.getServletContext());
    ProductService productService=(ProductService) context.getBean("productServiceImpl");
    Cart cart=(Cart)session.getAttribute("cart");
    if (cart!=null && cart.getCartItems()!=null && cart.getCartItems().size()>0){
        for (int i=0; i<cart.getCartItems().size();i++){
            CartItem cartItem=cart.getCartItems().get(i);
            if (cartItem.getProduct()!=null){
                Product product = productService.getProductById(cartItem.getProduct().getId(),"");
                int stock=product.getStock();
                product.setStock(stock+cartItem.getQuantity());
                product = productService.updateProduct(product);
            }
        }
    }
 }
}
于 2015-12-11T10:05:02.320 に答える