We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello Chris, I have configured a similar application and when I loaded the app using Intellij, I get an error :
WARNING: No mapping found for HTTP request with URI [/nas/rest/rego/register] in DispatcherServlet with name 'mvc-dispatcher'
When I run the same app building it externally on cmd and by deploying it in Tomcat it runs fine. It runs fine even in Eclipse.
It does not run in Intellij. I have also raised a bug within Intellij community. https://intellij-support.jetbrains.com/hc/en-us/signin?return_to=https%3A%2F%2Fintellij-support.jetbrains.com%2Fhc%2Fen-us%2Frequests%2F75016
Following are the configurations
<context:component-scan base-package="abc"/> <mvc:resources mapping="/app/**" location="/app/"/> <mvc:annotation-driven/> <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean>
<servlet> <servlet-name>mvc-dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>mvc-dispatcher</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
<context:component-scan base-package="base.package"/> <bean id="dataSource" class="some.datasource"> <property FULL_NAME="username" value="someusername"/> <property FULL_NAME="password" value="somepassword"/> <property FULL_NAME="url" value="someurl"/> <property FULL_NAME="driverClassName" value="some.Driver"/> </bean> <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="jpaVendorAdapter"> <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"/> </property> <property name="jpaProperties"> <map> <entry key="hibernate.hbm2ddl.auto" value="update"/> <entry key="hibernate.show_sql" value="true"/> <entry key="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/> </map> </property> <property name="packagesToScan" value="base.package"/> </bean> <tx:annotation-driven/> <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"/>
If you have any thoughts please share.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello Chris,
I have configured a similar application and when I loaded the app using Intellij, I get an error :
WARNING: No mapping found for HTTP request with URI [/nas/rest/rego/register] in DispatcherServlet with name 'mvc-dispatcher'
When I run the same app building it externally on cmd and by deploying it in Tomcat it runs fine.
It runs fine even in Eclipse.
It does not run in Intellij.
I have also raised a bug within Intellij community.
https://intellij-support.jetbrains.com/hc/en-us/signin?return_to=https%3A%2F%2Fintellij-support.jetbrains.com%2Fhc%2Fen-us%2Frequests%2F75016
Following are the configurations
If you have any thoughts please share.
The text was updated successfully, but these errors were encountered: