Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
390 views

How to remove app name and port from url in grails?

Instead of deploying my app to http://localhost:8080/myApp I want to deploy it to http://localhost
3
votes
1answer
257 views

grails and debugging UrlMappings

In grails, how can I add some code to the UrlMappings.groovy (ex: println) so that I can figure out what the request URI is and which mapping is getting hit (if any)? Background: In this situation, ...
3
votes
2answers
470 views

grails - subdomain based projects and links

I am trying to develop a grails application that has "root" content (www.mydomain.com/about for example) but will also support "projects" based upon the subdomain of the request; for example ...
3
votes
1answer
1k views

RESTful grails application: DRYing up UrlMapping

Let's say we have a grails web application exposing several resources. tags urls users The application has a classical web-interface which the users interact with and some administration. We want ...
2
votes
3answers
250 views

Grails urlmappings, can one prefix urlmappings?

So for instance, say i have an API on a webapp, and i wish to use the same controllers and actions in the API as the rest of the webapp. In my urlmappings file i have ...
2
votes
4answers
350 views

How to prevent direct access to *.gsp pages in Grails

Could anyone advise a feasible solution to prevent direct access to *.gsp pages on Grails? After reviewing intercepting '/**.gsp', I found it is impossible to use that as it not only filters out ...
2
votes
1answer
484 views

How to redirect from a controller using a named URL mapping?

I have a URL mapping as below: static mappings = { name register: "/register" { controller = "account" action = "createuser" } } and I want to redirect using ...
1
vote
1answer
28 views

Grails view URL Mapping

I'm kind of new to grails and I'm trying to just map a basic URL request to a view. So, say I have a view, /x/index.gsp and I want the user to be able to go to it. There will also be /y/index.gsp, ...
1
vote
1answer
113 views

Spring BeanNameUrlHandlerMapping maps pattern url

I have this particular query regarding BeanNameUrlHandlerMapping in Spring. Part of my dispatcher-servlet.xml looks like below - <bean id="beanNameUrl" ...
1
vote
2answers
122 views

Grails UrlMapping 404

I have this: static mappings = { "/a/b/$id/stuff"(controller: "stuff", action "action1" ) "/a/b/$id/stuff/$stuffId"(controller: "stuff", action "action2" ) ...
1
vote
1answer
263 views

Grails UrlMappings for unknown number of variables

I'm using url mappings to translate the URL directory structure into categories within a site, currently using: class UrlMappings { static excludes = ['/css/*','/images/*', '/js/*', ...
1
vote
1answer
313 views

Grails urlmapping using id and name

hey all, i have a question about urlmapping in grails. I'm trying to make seo friendly url's using a page name and id. I got the follwing in my URLMapping: class UrlMappings { static mappings = { ...
1
vote
1answer
315 views

Launching a grails-app through Intelli-J with root set to localhost:8080/ instead of localhost:8080/app, or modifying createLink?

Is there a way to launch an application through Intelli-J so that it makes localhost:8080/ the root of the application? The problem I'm having is that AJAX urls that work locally don't work in ...
1
vote
1answer
234 views

Grails UrlMappings to external remote files

In Grails, I'm trying to make it so that any requests to /images/* actually goes to another website on another host. I know how to do it in Apache with Mod Rewrite, but how can I achieve this with ...
1
vote
1answer
286 views

how to detect whether a uri is allow by shiro or extract controller name from uri

i have a uri such as someController/someAction?param1=aa&param2=bb is there some method of grails can extract controller name and action name from this uri. or shiro has any method to detect ...
1
vote
1answer
432 views

to rewrite url in Global.asax, ASP.NET

HEllo. I need replace double slashes in one slash. I am planning do this in Global.asax Application_BeginRequest event. Is it enough? or better do a http module? Thank you. UPD Sub ...
1
vote
1answer
590 views

Grails UrlMapping - cannot set params.id for controller

I'm trying to create a UrlMapping to map some static URL to a controller action, but I can't seem to set params.id. I'm working through Grails in Action, so I'm not sure what's wrong here. Code: ...
1
vote
2answers
487 views

I can't use Sitemap when I use UrlMapping

when I create folder for every page and remap those in web.config , appeared this problem . 1)I can't see content of pages. 2)When I use navigation controls , my web.SiteMap don't work and don't ...
0
votes
3answers
60 views

Getting the current browser url in Grails

I need to get the browser URL in Grails, or particularly, a parameter off of it in the UrlMapping. I need this in a particular circumstance, after an asynchronous call from a different ...
0
votes
1answer
20 views

UrlMapping causing method not to render different view than default

class SearchController { def list = { List<Product> productsList = productRepository.findProductBySearchPhrase(params.searchPhrase) render(view: "/product/list", model: [products: ...
0
votes
0answers
27 views

Grails chain method using url causes redirect loop

GSP form: <g:form controller="search" action="searchBooks" /> Search Controller: def searchBooks = { // some action chain ( uri: "/books/$categories/?phrase=$params.phrase", ...
0
votes
1answer
57 views

Grails URLMapping to Response Codes doesn't work if the request is POST

I am a little crazy about this. At first, my mapping is like below "500"(view:'/error/exception') But, then we found, if the exception is throw in Spring Security code, the error page is not ...
0
votes
1answer
46 views

Spring 3.1 ViewResolver for local content (swf object)

In my project my jsp form contains a swf object which is placed in "WEB-INF/fl". When I publish project I am getting "url mapping not found" error for swf object. How can I make my local content ...
0
votes
1answer
83 views

how can i call mapped uri form link?

"/list"( controller:"register", action:"list") i have written that in urlmapping file then,in my index.gsp i have, <g:link uri="/list">Click for new registration</g:link> ...
0
votes
0answers
40 views

how can i have urlmapping on different actions of default controller?

i found this, "/product" { controller = "product" action = "list" } but here its mapping for the generated controller product.but i want to have it on default controller and for every action in ...
0
votes
1answer
131 views

How to map the url's of view's in browser to one specific name?

M new to grails n now my problem is, I want when i browse my application instead of getting URL as http://localhost:8080/merchant/ i want to display only ://localhost. Like wise when i browse other ...
0
votes
0answers
149 views

URL Mapping not working on Production Sever

I have a URL Mapping section for a couple of URLs in my Web.config file. Mapped URLs are working on my development machine, but a not working on production machine (Host Machine). How do I exploit ...
0
votes
2answers
211 views

tiles2 definition not working with ControllerClassNameHandlerMapping

I'm using ControllerClassNameHandlerMapping to avoid explicitly mapping URLs to controllers, and so far it works fine. I have a link in index.jsp to welcome.html, which is properly mapped to ...
0
votes
1answer
72 views

Grails UrlMappings with “-” as a separator

I want to separate String params with a "-" in a url. I had configurate UrlMappings with: name friendlyurl: "/${productId}-${title}_url"{ controller = "product" action = "index" } The ...
0
votes
1answer
280 views

Have Spring DispacherServlet resolve the correct URLmap

On my Tomcat-Spring-Java project I want to have the following URLS /index - to display entry page /login - Login page /cars/ - list the available cars /cars/{id} - show a particular car ...
0
votes
1answer
252 views

Creating a Grails URLMapping for all methods in a controller?

How do I create a urlmapping that maps controller A essentially as controller B? I thought something like this would work, but no dice. "/my/"(controller: 'other', action: '*')
0
votes
3answers
1k views

UrlMapping giving 404 Page not found on IIS but working fine on local server port

Well I am having a problem when I have put my .NET 2.0 web site on IIS 6. I have used UrlMapping to redirect some old urls. It is working fine when I am using it on the VS local server port but when I ...
0
votes
1answer
138 views

Google Search Result - URL mapping

Searching from google.com, like www.abc.com Search Result Rank the pages like Title..... Description... www.abc.com Title... Description... www.abc.com/Aboutus.aspx Title... Description... ...