Scope | Description |
---|---|
| |
| |
| |
| |
|
pasos a seguir para la configuración para acceder a beans de session y request desde un @Controlller
1. incluir en el pom.xml la dependencia de cglib-2
<dependency>
<groupId>cglib<groupId>
<artifactId>cglib<artifactId>
<version>2.2<version>
</dependency>
incluir la directiva de espacio de nombres aop en el applicationContext.xml (Intercambiar lo que teniamos)
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
incluir etiqueta aop:scoped-proxy en el bean a inyectar en el controlador
<bean id="usuarioChat" class="es.cea.UsuarioChat" scope="session">
<aop:scoped-proxy />
<property name="listaMensajes" ref="listaMensajes"></property>
</bean>
<bean id="mensajeUsuarioChat" class="es.cea.MensajeUsuarioChat" scope="request">
<property name="listaMensajes" ref="listaMensajes"></property>
<property name="usuarioChat" ref="usuarioChat"></property>
<aop:scoped-proxy />
</bean>
por ultimo para recibir parametros del formulario normal
public ModelAndView chatEnvioMensaje(
@RequestParam(value = "mensaje") String mensaje) {
return ....
}
UNA VEZ CONFIGURADO EL PROYECTO que vamos a hacer?
COMO LO VAMOS A HACER:
- applicationContext.xml
- Clases Java y JSPs
- ListaMensajes.java
- MensajeChat.java
- MensajeUsuarioChat.java
- UsuarioChat.java
- chat.jsp
- registroChat.jsp
- errorRegistroChat.jsp
No hay comentarios:
Publicar un comentario