Search:

Type: Posts; User: venosov; Keyword(s):

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thread: jahia

    by venosov
    Replies
    0
    Views
    477

    jahia

    I'm playing with jahia (http://www.jahia.com/cms/home/community/documentation/technical-overview/overview/the-closer-view.html) that uses Spring, has anybody worked with it?
  2. Replies
    2
    Views
    1,044

    Hi, see this post...

    Hi, see this post.
  3. Replies
    1
    Views
    1,854

    Hi, the RMI registry you cannot stop...

    Hi, the RMI registry you cannot stop programmatically. But you can stop your service (bound to the RMI registry). You should invoke a custom method to cleanly shutdown your service and then unbindit...
  4. Replies
    1
    Views
    362

    Hi, click in "Edit" and push the "Delete" button...

    Hi, click in "Edit" and push the "Delete" button :-)
  5. Replies
    1
    Views
    807

    Hi, RMI or EJB are good, but they communicate...

    Hi, RMI or EJB are good, but they communicate through their own protocol, if you’d like to communicate over HTTP: Hessian and Burlap have proprietary messages and their own serialization mechanism....
  6. Hi, you can download STS (Springsource tool...

    Hi, you can download STS (Springsource tool suite) and debug the code, Maven will download automatically the source code to inspect.
  7. Replies
    1
    Views
    1,204

    Hi, you can use the RMI Compiler Maven Plugin...

    Hi, you can use the RMI Compiler Maven Plugin.
  8. Hi, you could use a semaphore to limit the...

    Hi, you could use a semaphore to limit the concurrent number of users.
  9. Hi, have you tried to create your own validator?

    Hi, have you tried to create your own validator?
  10. Replies
    4
    Views
    1,057

    You need to add another context listener ...

    You need to add another context listener

    org.springframework.web.context.request.RequestContextListener

    .contextListenerClass(RequestContextListener.class)


    For more details see here:
    ...
  11. Replies
    2
    Views
    419

    Hi, Spring automatically performs the validation...

    Hi, Spring automatically performs the validation (if @Valid is given) and in case of error will throw MethodArgumentNotValidException which by default result in 400 Bad Request, but if you need to...
  12. Replies
    1
    Views
    805

    Hi, could you show the errors?

    Hi, could you show the errors?
  13. If you don’t prefer the default login page, you...

    If you don’t prefer the default login page, you can provide a custom login page of your own:



    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    <html>
    <head>...
  14. Hi, try to specify the UTF-8 encoding in the...

    Hi, try to specify the UTF-8 encoding in the client.
  15. Replies
    1
    Views
    407

    Hi, have you tried to use MappingJacksonJsonView?...

    Hi, have you tried to use MappingJacksonJsonView?



    @RequestMapping("/jsontournament")
    public String getJSON(Model model) {
    List<TournamentContent> tournamentList = new...
  16. Hi, there is a...

    Hi, there is a org.springframework.security.oauth2.consumer.OAuth2RestTemplate, see this post.
  17. Replies
    1
    Views
    1,110

    Hi, there is a unresolved new request in jira...

    Hi, there is a unresolved new request in jira.
  18. Hi, there is a ticket...

    Hi, there is a ticket that comments this subject.
  19. Replies
    1
    Views
    6,343

    Hi, have you tried to use VM arguments:...

    Hi, have you tried to use VM arguments: -Dhttp.proxyHost=mydomain.com -Dhttp.proxyPort=3128 ?
  20. Replies
    2
    Views
    369

    Hi, Tomcat in STS and Eclipse doesn't use the...

    Hi, Tomcat in STS and Eclipse doesn't use the generic configuration, it creates his own files, look at the VM arguments in "Run configurations", for example:

    -Dcatalina.base="C:\Documents and...
  21. Replies
    2
    Views
    2,140

    Hi, if you'd like to use only DB, you can code...

    Hi, if you'd like to use only DB, you can code something like:



    <bean id="dataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName"...
  22. Replies
    1
    Views
    408

    Hi, could you show the error log?

    Hi, could you show the error log?
  23. Replies
    1
    Views
    960

    Hi, you can see an example to integrate spring...

    Hi, you can see an example to integrate spring and jpa here (http://www.apress.com/downloadable/download/sample/sample_id/556/).

    ...\dataaccess\src\main\java\com\apress\springente...
  24. Replies
    1
    Views
    1,322

    Hi, RMI communicate through their own protocol,...

    Hi, RMI communicate through their own protocol, which may not pass through firewalls. If you need it,
    you’d like to communicate over HTTP.
  25. Hi, have you tried to use Boolean wrapper class...

    Hi, have you tried to use Boolean wrapper class (instead of boolean).
Results 1 to 25 of 102
Page 1 of 5 1 2 3 4