Yes, but the project it's old, now Liferay and Maven created the archetypes to generate the projects as
azzazzel-liferay-maven-sdk, but it seems that nobody have created an archetype to generate...
Type: Posts; User: oliosien; Keyword(s):
Yes, but the project it's old, now Liferay and Maven created the archetypes to generate the projects as
azzazzel-liferay-maven-sdk, but it seems that nobody have created an archetype to generate...
Does anyone know if it exists a maven archetype to generate spring-portlet
web project?
Thx in advance,
Enrico
Thx a lot Marten, you're right and I found the solution:
...
<mvc:annotation-driven/>
<mvc:interceptors>
<bean class="it.intesys.spring.interceptor.MyInterceptor" />...
Thx Marten, I post my configuration:
web.xml:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/myApplicationContext.xml
</param-value>
Ok, thx Marten, this my web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"...
Hi Marten, thx a lot 4 your help,
Yes, my DispatcherServlet has name "spitter" as <servlet-name> in web.xml and I wrote the interceptor configuration in spitter-servlet.xml. In web.xml I...
Hi all,
I am working with Spring 3.1.0.M2 and I configured controllers by @Controller and @RequestMapping annotations.
I want to intercept all client request (*) with an Interceptor which...
Hi all,
I am trying to validate a form submission and I read that spring validation works fine. I looked for this module: spring-modules-validation.jar and I found it only on maven
repository...
Thanks a lot ksevindik for your help.
Do you think that Spring will make somethings to manage cross context transaction in future?
Hi, I have a problem.
I have an application A which performs an operation
on a database1 and invokes (by spring httpinvoker) a service (an application B)
which performs an operation on a...