spring3 mvc 中怎么从当前action跳到另一个action中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring3 mvc 中怎么从当前action跳到另一个action中相关的知识,希望对你有一定的参考价值。
参考技术A spring mvc没有action 你说action指的是社么啊 通俗点追问Controller
追答JSP页面通过指定URL访问到 指定的Controller
Controller 返回一个ModelAndView对象 到指定JSP页面
我还是不太理解 后台Controller调用就正常方法呗
怎么叫一个Controller跳到另一个Controller
我晕,我是想要struts2的跳转功能,明白?
本回答被提问者采纳 参考技术B 能发我一个 只用spring3 mvc这一个框架做的事列吗,我刚学,谢谢!!!!QQ:394951514@ServerEndpoint 和 Spring MVC 注入
【中文标题】@ServerEndpoint 和 Spring MVC 注入【英文标题】:@ServerEndpoint and Spring MVC injection 【发布时间】:2016-10-28 22:00:39 【问题描述】:我正在尝试在@ServerEndpoint 类中注入由@Repository 类注释的。但是当我试图调用存储库方法时,它返回 null。从这个包中注入的另一个 bean 工作正常。
@ApplicationScoped
@ServerEndpoint("/WebsocketHome/actions")
public class WebSocketServer
private static final Logger LOG = Logger.getLogger(WebSocketServer.class);
@Inject
private SessionHandler sessionHandler;
@Inject
private PlaceRepository placeRepository;
@OnMessage
public void handleMessage(String message, Session session)
JSONParser jsonParser = new JSONParser();
try
JSONObject jsonObject = (JSONObject) jsonParser.parse(message);
if ("getRooms".equals(jsonObject.get("action")))
List<Place> places = this.placeRepository.getAllPlaces(); //error is here
catch (ParseException e)
LOG.error(e.getMessage());
.....
这是存储库类:
@Repository
@Transactional
public class PlaceRepository
@Autowired
private SessionFactory sessionFactory;
@SuppressWarnings("unchecked")
public List<Place> getAllPlaces()
return this.sessionFactory.getCurrentSession().createQuery("from Place place").list();
web.xml:
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<display-name>Archetype Created Web Application</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/application-context.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
应用上下文.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:property-placeholder location="classpath:application.properties" system-properties-mode="ENVIRONMENT"/>
<context:component-scan base-package="com.hms.repository"/>
<context:component-scan base-package="com.hms.utils"/>
<tx:annotation-driven transaction-manager="txManager"/>
<import resource="security-context.xml"/>
<bean id="txManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="$db.driverClassName" />
<property name="url" value="$db.url" />
<property name="username" value="$db.username" />
<property name="password" value="$db.password" />
<!--
<property name="initialSize" value="5" />
<property name="maxActive" value="10" />
<property name="maxIdle" value="5" />
<property name="minIdle" value="2" />
-->
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation" value="classpath:hibernate.cfg.xml"/>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">$db.dialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hbm2ddl.auto">$db.hbm2ddl.auto</prop>
</props>
</property>
</bean>
</beans>
错误仅在调用@OnMessage 方法时出现。 存储库类的所有 junit @Tests 都返回良好的结果。 我的代码有什么问题? 对不起我的英语。
更新:
看来,这个问题出在 SessionFactory 依赖中,因为我在@Repository 中添加了测试方法:
public String testWS()
return "Test is ok!";
返回很好的结果。
【问题讨论】:
你能提供你的配置吗?最初的想法是问题在于在您的课程上使用事务注释。当您使用 @Transactional 时,spring 将提供一个代理并假设您没有使用 CGLIB,JDK 动态代理将与您的具体 PlaceRepository 不兼容 按照您的要求,我包含配置文件。 【参考方案1】:所以,看来我找到了正确的方法。我在Spring websocket documentation 中找到了它。 我做了一些步骤:
我输入了类型级别的注释:
@ServerEndpoint(value = "/WebsocketHome/actions", configurator = SpringConfigurator.class)
我将@Service 和@Controller 添加到我的websocket 类中,并将“context:component-scan”路径添加到我的app-context.xml 文件中,以便Spring 可以找到相应的bean。
我在 pom.xml 中添加了“spring-websocket”依赖项(我使用 maven)
也许这不是正确的方法,但它对我来说很好。
【讨论】:
【参考方案2】:@Today 2022 年 1 月 31 日只需添加“spring-websocket”依赖项
【讨论】:
Skidus,这并没有提供问题的答案。您可以search for similar questions,或参考页面右侧的相关和链接问题找到答案。如果您有一个相关但不同的问题,ask a new question,并包含指向此问题的链接以帮助提供上下文。见:Ask questions, get answers, no distractions 正如目前所写,您的答案尚不清楚。请edit 添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。你可以找到更多关于如何写好答案的信息in the help center。以上是关于spring3 mvc 中怎么从当前action跳到另一个action中的主要内容,如果未能解决你的问题,请参考以下文章
asp mvc中action跳到另一个action怎么传递参数
spring3 mvc的service如何在类中的中的怎么样使用
spring3.0 MVC 中怎么访问静态的html文件?forward到jsp页面可以,html却不行,该怎么办?mapping用的是"/"