It's already in my post. Just scroll down the first code wrap.
Type: Posts; User: protocyber; Keyword(s):
It's already in my post. Just scroll down the first code wrap.
I have the following mapping handler:
@Controller
@RequestMapping("/product")
public class ProductController {
@RequestMapping(value = "update", method = RequestMethod.POST)
...
Hi all,
I want to update entity object with Jackson (Hibernate as ORM)
Now, I have a problem converting this JSON to entity object:
{id: 1, name: "child name", parent: 1}
Those JSON...
Ooopss...vFabric tc Server still cannot auto-deploy context configuration changes.
I tried this test:
I edit /WEB-INF/spring/appServlet/servlet-context.xml
I change this line:
<resources...
Thank you very much, Mr. Jordan.
I've read your tutorial. It's very great.
Now I use vFabric tc Server. Thank you.
Hi all, I'm using SpringSource Tool Suite as IDE and Apache Tomcat as server.
I always restart the server to reload context configuration changes.
Is it possible to auto-deploy context config...
I've found the problem.
It is caused by
<mvc:view-controller path="/" view-name="welcome"/>
So I remove those line from my configuration.
Hi all, I'm new to Spring Framework and using Spring for my current web project.
I would like to ask, is <mvc:annotation-driven/> needed when we use @Controller and @RequestMapping annotation ?
...