onewaymail 发表于 2014-9-29 23:27:32

No mapping found for HTTP request with URI

本帖最后由 onewaymail 于 2014-9-29 23:28 编辑

使用JeecgOneGUI 生成代码以后,代码没有任何问题,也没有报错,可是配置好菜单并且授权给admin后,访问页面就报告404错误。以下是我的配置信息,请高手有时间指点一下,谢谢。

jeecg_config.properties:
source_root_package=src.main.java
webroot_package=WebRoot
#bussi_package
bussi_package=com.buss

后台报错信息:
No mapping found for HTTP request with URI in DispatcherServlet with name 'springMvc'



IQ10 发表于 2014-9-30 21:35:31

貌似是你的spring-mvc.xml文件没有配置扫描controller

要加上这一段
<context:component-scan base-package="com.buss.*">
                <context:exclude-filter type="annotation"
                        expression="org.springframework.stereotype.Service" />
        </context:component-scan>

onewaymail 发表于 2014-10-18 00:32:49

本帖最后由 onewaymail 于 2014-11-6 14:47 编辑

是的,不过还在一个文件中做修改:spring-mvc-hibernate.xml
完整的修改如下:
1、spring-mvc.xml:如您所说。
2、spring-mvc-hibernate.xml,修改两处:
   <context:component-scan base-package="com.buss .*"/>
<bean id="sessionFactory"
                class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
……………
   <property name="packagesToScan">
                        <list><value>com.buss .*</value>
                        </list>
      </property>
</bean>
页: [1]
查看完整版本: No mapping found for HTTP request with URI