java - Strtus2 跳轉到WEB-INF/content下
問題描述
使用strtus2,action進行跳轉的時候,自動跳轉到WEB-INF/content目錄下。不知道哪里出問題了。
我是把所有的文件都放在了webroot下,
下面是我的幾個文件
web.xml
<?xml version='1.0' encoding='UTF-8'?><web-app version='2.5' xmlns='http://java.sun.com/xml/ns/javaee' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd'> <!-- 1. listener 2.Filter 3.servlet 4.welcome-file-list --> <!--========================== 1. 配置Spring========================== --> <context-param><param-name>contextConfigLocation</param-name><param-value>classpath:applicationContext.xml</param-value> </context-param> <listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- ==========================配置struts2========================== --> <filter><filter-name>struts2</filter-name><filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping><filter-name>struts2</filter-name><url-pattern>/*</url-pattern> </filter-mapping> <welcome-file-list><welcome-file>index.jsp</welcome-file> </welcome-file-list></web-app>
applicationContext.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:p='http://www.springframework.org/schema/p' xmlns:aop='http://www.springframework.org/schema/aop'xmlns:context='http://www.springframework.org/schema/context' xmlns:jee='http://www.springframework.org/schema/jee'xmlns:tx='http://www.springframework.org/schema/tx'xsi:schemaLocation=' http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd'> <!-- ==================1.基于注解,掃描包============================= --> <context:component-scan base-package='com.demo.*'></context:component-scan> <!-- ==================2.數據源配置============================= --> <context:property-placeholder location='classpath:config/DBconfig.properties'/> <beanp:driverClassName='${driverClassName}' p:url='${url}' p:username='${username}' p:password='${password}' > </bean> <!--==================3.JdbcTemplate============================= --> <bean class='org.springframework.jdbc.core.JdbcTemplate'> <property name='dataSource' ref='dataSource'></property> </bean> <!-- ==================4.事務管理(AOP : Aspect Oriented Programming)============================= --> <!--(a) 配置事務對象: --> <bean class='org.springframework.jdbc.datasource.DataSourceTransactionManager'> <property name='dataSource' ref='dataSource'></property> </bean> <tx:annotation-driven transaction-manager='txManager'/> <!-- (b) AOP橫切事務 --> <aop:config> <aop:pointcut expression='execution(* com.demo.dao..*.*(..))'/> <aop:advisor advice-ref='txAdvice' pointcut-ref='txPC'/> </aop:config> <!--(c) 事務屬性定義--> <tx:advice transaction-manager='txManager'> <tx:attributes> <tx:method name='query*' read-only='true' /> <tx:method name='save*' propagation='REQUIRED' /> <tx:method name='add*' propagation='REQUIRED' /> <tx:method name='update*' propagation='REQUIRED' /> <tx:method name='delete*' propagation='REQUIRED' /> </tx:attributes> </tx:advice> </beans>
頁面代碼
問題解答
回答1:配置路徑應該加上WEB-INF吧
回答2:已經解決了,原來是我action-->location中沒有加“/”。相關文章:
1. 致命錯誤: Class ’appfacadeTest’ not found2. python - pyspider的分布式運行成功,2臺slave跑,但是時間并沒有縮短問題?3. npm install -g browser-sync這個之后出錯 還有人嗎 我都感覺沒人回答問題了4. javascript - 小程序跳轉失敗?5. android - Apk 中找不到r類文件6. python - 數據無法插入到mysql表里7. angular.js - 用requireJS模塊angularjs代碼時遇到一些問題8. java - Oracle如何獲取去重結果集中某一條數據的下一條數據9. javascript - 求正則表達式的寫法10. dockerfile - 為什么docker容器啟動不了?
