1
Friends, I have a problem, all the accents you have in the program that I made using Tomcat are with "?" as an example: Atrav? s, informs?? es,? ndices. in the pom I set up:
<properties>
<springframework.version>4.0.6.RELEASE</springframework.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
you could tell me what’s still missing?
What front technology are you using? To find out if the page rendering is on the server or client. Does this data come from the database, from Java itself or from some properties file? Can you show us more snippets of your code?
– Dherik