1. Introduction to Salesforce Definition : Salesforce is the #1 Cloud-based CRM (Customer Relationship Management) platform that helps businesses manage relationships with customers, automate business processes, and analyze performance. Founded : 1999 by Marc Benioff. Type : SaaS (Software as a Service). Tagline : "No Software" – because everything runs on the cloud, without local installations. 2. Why Salesforce? Traditional CRMs were expensive and required servers, installations, and IT staff. Salesforce revolutionized CRM by moving everything to the cloud . Benefits: 🚀 Faster implementation ☁️ Cloud-based (accessible anywhere) 🔄 Customizable without coding (point-and-click tools) 🤝 Strong ecosystem & AppExchange (marketplace like Google Play for Salesforce apps) 🔐 Security & scalability 3. Salesforce Products & Cloud Offerings Salesforce is not just CRM; it has multiple clouds (modules) for different busine...
If we want to perform redirection into the spring MVC web application then we can use the redirect keyword under ModelAndView class Object and define the path of the controller.
suppose you want to create a login form and implement redirection after successful login then also we should use a redirect.
redirect also use browser cookie because it will redirect the page after browser instruction.
we will use ModelAndView class to implement Redirection from one web page to another.
we will write a redirect method under Model and View
return new ModelAndView("redirect:dashboard.do");
This code should be written on the Controller classes method, especially on login and logout operation.
Comments
Post a Comment
POST Answer of Questions and ASK to Doubt