Merhaba,
Yukarıdaki gibi bir hata ile karşılaşıyorsanız kullanmış olduğunuz message.properties sayfasını görmüyordur. Message properties sayfasını "src/main/resources" ın altına almanız gerekmektedir ve de faces-config.xml sayfasında aşağıdaki gibi ekleme yapmamız gerekmektedir.
faces-config.xml
<?xml version='1.0' encoding='UTF-8'?> <faces-config version="2.2" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"> <application> <resource-bundle> <base-name>/MyBundle</base-name> <var>myBundle</var> </resource-bundle> </application> <application> <message-bundle>/MyBundle_tr</message-bundle> <locale-config> <default-locale>tr</default-locale> <supported-locale>tr</supported-locale> </locale-config> </application> </faces-config>
Sorunsuz javalı günler
0 Yorumlar